docs: fix stale defaults, wrong tool names, and missing CLI flags#3043
Merged
Conversation
|
❌ PR Review Failed — The review agent encountered an error and could not complete the review. View logs. |
aheritier
approved these changes
Jun 10, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
A full review of the docs site against the current code turned up a number of claims that were false or out of date. This fixes all of them, verified against the CLI help output,
agent-schema.json, and the relevant Go packages.The biggest offenders were the config version (documented as 8, current is 10), the Anthropic/Bedrock thinking defaults (several pages contradicted each other; per
pkg/model/provider/defaults.go, thinking is off unlessthinking_budgetis set andinterleaved_thinkingis then auto-enabled for Claude models), and the model-picker page, which documented apick_modeltool that does not exist — the real tools arechange_modelandrevert_model, and the switch is immediate rather than next-turn.Smaller fixes: the
serve a2a --agentdefault is the team's first agent, notroot; the filesystem post-edit hook docs referenced a nonexistentpatch_filetool; the RAG pages usedbatch_sizeinstead ofembedding_batch_sizeand documented wrong defaults for chunk size and rerankingtop_k; and the CLI/TUI references were missing--theme,--on-event,--tool-name,--mcp-keepalive,--attach, and the/skillscommand. Docs-only change, no code touched.