Conversation
There was a problem hiding this comment.
Documentation-only change that adds a useful quick-reference table. One concern about the accuracy of shorthand flag mappings that should be verified against the current CLI source before merging.
🤖 Automated review complete. Please react with 👍 or 👎 on the individual review comments to provide feedback on their usefulness.
|
|
||
| | Flag | Description | | ||
| | :--- | :---------- | | ||
| | `-p, --print` | Run one instruction and print to stdout (non-interactive) | |
There was a problem hiding this comment.
The CHANGELOG (v0.5.0) documents -p as shorthand for --prompt and -q as shorthand for --query:
Added shorthand flags for common options:
-i(input),-if(input-file),-p(prompt),-q(query),-lm(list-models),-m(model),-cm(command)
This table maps -p → --print and -q → --quiet, which contradicts that CHANGELOG entry. Could you verify against the current CLI source that these shorthand mappings are correct? If the shorthands were reassigned in a later version, that's fine — but worth double-checking to avoid confusing users.
🤖 Augment PR SummarySummary: Adds a "Common flags" quick-reference section to the README so frequently used Auggie CLI options are discoverable. 🤖 Was this summary useful? React with 👍 or 👎 |
| | Flag | Description | | ||
| | :--- | :---------- | | ||
| | `-p, --print` | Run one instruction and print to stdout (non-interactive) | | ||
| | `-q, --quiet` | Show only the final assistant message | |
| | `-p, --print` | Run one instruction and print to stdout (non-interactive) | | ||
| | `-q, --quiet` | Show only the final assistant message | | ||
| | `-a, --ask` | Ask mode — retrieval and non-editing tools only | | ||
| | `-m, --model <id>` | Select the model to use (`auggie model list` to see options) | |
There was a problem hiding this comment.
| | `-c, --continue` | Resume the most recent conversation | | ||
| | `-r, --resume [id]` | Resume a specific session by ID or pick interactively | | ||
| | `--rules <path>` | Additional rules file to append to workspace guidelines | | ||
| | `--mcp-config <cfg>` | Path to MCP server configuration JSON | |
There was a problem hiding this comment.
Add a quick-reference table of commonly used CLI flags including: - Print/quiet/ask modes - Model selection - Session management (continue/resume) - Rules and MCP config Links to the full CLI reference docs for complete details.
276751f to
a5f901c
Compare
Summary
Adds a quick-reference table of commonly used CLI flags to the README. Many of these flags exist in the CLI but weren't mentioned in the README at all.
Changes
Adds a "Common flags" section with a table covering:
-p/--print,-q/--quiet,-a/--ask-m/--model-c/--continue,-r/--resume--rules,--mcp-configLinks to the full CLI reference for complete details.
Note: BYOK flags (
--provider-model,--provider-api-key,--provider-base-url) were intentionally excluded as they are not yet publicly available (gated to specific tenants inflags.jsonnet).Context
This was identified by scanning the CLI source code in
clients/cli/src/cli/arguments/and comparing against the existing README, cross-referenced withtools/feature_flags/flags.jsonnetto confirm public availability.