diff --git a/packages/coding-agent/README.md b/packages/coding-agent/README.md index 69ea69da..9e15f499 100644 --- a/packages/coding-agent/README.md +++ b/packages/coding-agent/README.md @@ -1122,7 +1122,7 @@ pi [options] [@files...] [messages...] | `--continue`, `-c` | Continue most recent session | | `--resume`, `-r` | Select session to resume | | `--models ` | Comma-separated patterns for Ctrl+P cycling. Supports glob patterns (e.g., `anthropic/*`, `*sonnet*:high`) and fuzzy matching (e.g., `sonnet,haiku:low`) | -| `--no-tools` | Disable all built-in tools (use with `-e` for extension-only setups) | +| `--no-tools` | Disable all built-in tools | | `--tools ` | Comma-separated tool list (default: `read,bash,edit,write`) | | `--thinking ` | Thinking level: `off`, `minimal`, `low`, `medium`, `high` | | `--extension `, `-e` | Load an extension file (can be used multiple times) | diff --git a/packages/coding-agent/src/cli/args.ts b/packages/coding-agent/src/cli/args.ts index 3b340775..d953ced9 100644 --- a/packages/coding-agent/src/cli/args.ts +++ b/packages/coding-agent/src/cli/args.ts @@ -177,7 +177,7 @@ ${chalk.bold("Options:")} --no-session Don't save session (ephemeral) --models Comma-separated model patterns for Ctrl+P cycling Supports globs (anthropic/*, *sonnet*) and fuzzy matching - --no-tools Disable all built-in tools (use with -e for extension-only tools) + --no-tools Disable all built-in tools --tools Comma-separated list of tools to enable (default: read,bash,edit,write) Available: read, bash, edit, write, grep, find, ls --thinking Set thinking level: off, minimal, low, medium, high, xhigh