Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,14 @@ The first `install <source>` scans the source for agent files, installs them int

## Commands

### Global Options

These options can be used with any command:

| Option | Description |
|---|---|
| `-v, --verbose` | Enable debug logging output for troubleshooting |

### `agentfiles init`

Create a new `agentfiles.json` manifest. The manifest starts empty -- add dependencies with `agentfiles install <source>`.
Expand Down Expand Up @@ -173,6 +181,9 @@ agentfiles scan

# Scan a remote repository
agentfiles scan github.com/org/repo@main

# Scan with verbose output for troubleshooting
agentfiles --verbose scan github.com/org/repo
```

### `agentfiles list`
Expand Down
1 change: 1 addition & 0 deletions src/cli.rs
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ use crate::types::{AgentProvider, FileScope, FileStrategy};
version
)]
pub struct Cli {
/// Enable debug logging output
#[arg(short, long, global = true)]
pub verbose: bool,

Expand Down