[Docs] Fix cli-reference: list-projects output and add rebuild command#754
Draft
github-actions[bot] wants to merge 1 commit into
Draft
[Docs] Fix cli-reference: list-projects output and add rebuild command#754github-actions[bot] wants to merge 1 commit into
github-actions[bot] wants to merge 1 commit into
Conversation
- Fix list-projects example output: was a table format, actually prints `repo (branch: name)` per line - Add missing `rebuild` command (clears tasks/merge queue, re-populates from GitHub) Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Open
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.
$(cat <<'EOF'
Summary
list-projectsexample output: The docs showed a table withID / Repository / Statuscolumns that don't exist. The actual output isrepo (branch: branch_name)— one line per project.rebuildcommand: Therebuildsubcommand exists incrates/app/src/main.rs(line 139) and is shown in the CLI help text (line 299), but was absent from the reference docs.Source files verified
crates/app/src/main.rs—cmd_list_projects()output format,cmd_rebuild()descriptionTest plan
list-projectsoutput format matchesprintln!("{} (branch: {})", p.repo, p.default_branch)inmain.rs:126rebuildcommand description matches the docstring inmain.rs:132–137Wiki sync status
Wiki sync not applicable (no wiki repo configured).
🤖 Generated with [Claude Code]((claude.com/redacted)
EOF
)