Fix documentation to use code_search code subcommand prefix#16
Merged
CamonZ merged 1 commit intoCamonZ:masterfrom Feb 19, 2026
Merged
Fix documentation to use code_search code subcommand prefix#16CamonZ merged 1 commit intoCamonZ:masterfrom
code_search code subcommand prefix#16CamonZ merged 1 commit intoCamonZ:masterfrom
Conversation
After the CLI restructuring in dae34aa, all analysis commands moved under the `code` subcommand group, but documentation still showed the old top-level invocation (e.g. `code_search import` instead of `code_search code import`). This updates all 37 documentation files plus the post-commit hook template to use the correct `code_search code <command>` syntax. Also adds docs/WORKTREES.md for git worktree setup guidance and updates NEW_COMMANDS.md to reference `CodeCommand` enum in code.rs.
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.
Summary
code_search import,code_search hotspots, etc.) but after the CLI restructuring in dae34aa, these commands moved under thecodesubcommand groupcode_search code <command>docs/WORKTREES.mdwith git worktree setup guidance (each worktree needs its own RocksDB)docs/NEW_COMMANDS.mdstep 8 to referenceCodeCommandenum incode.rsinstead of the oldCommandenumTest plan
code_search code --helpshows all subcommandscode_search code import --help,code_search code hotspots --help)code_search setupstill works as a top-level command (not undercode)grep -rn 'code_search import\|code_search hotspots\|code_search location' --include="*.md" templates/ docs/ README.md | grep -v 'code_search code '