Remove dead command files and fix stale docs#41
Merged
Jason-Adam merged 3 commits intomainfrom Mar 31, 2026
Merged
Conversation
Commit #39 removed all commands except /do from the install script but left 16 orphan command .md files in the repo. This cleans them up and updates every doc to reflect the skill-based architecture. - Delete 16 dead command files from commands/ (only do.md remains) - Rewrite docs/commands.md as "Skill Reference" with /do routing examples - Add missing gc and create-pr sections to skill reference - Fix broken README anchor links to gc and create-pr - Update all docs to use /do prefix in examples (loop.md, planning.md) - Correct stale counts: hooks 8->9, skills 14->16, commands 17->1 - Replace ASCII architecture diagram with mermaid in README - Update test count 392->460 Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
There was a problem hiding this comment.
Pull request overview
This PR completes the “single /do entry point” migration by removing leftover legacy command wrapper markdown files and updating documentation to consistently describe/route usage through /do, including refreshed counts and a new README architecture diagram.
Changes:
- Deleted orphaned
commands/*.mdlegacy command wrappers (leaving/doas the only installed command entry point). - Rewrote
docs/commands.mdinto a skill-oriented reference and updated examples across docs to use/do …. - Updated README/CLAUDE.md counts + links and replaced the ASCII architecture diagram with a Mermaid diagram.
Reviewed changes
Copilot reviewed 21 out of 21 changed files in this pull request and generated 2 comments.
Show a summary per file
| File | Description |
|---|---|
| README.md | Updates architecture diagram to Mermaid, revises usage section to skills routed via /do, fixes counts/links. |
| docs/planning.md | Updates sync examples to use /do sync-thoughts. |
| docs/loop.md | Updates loop examples/flow to use /do … invocations. |
| docs/commands.md | Converts “Command Reference” into “Skill Reference”, adds missing gc and create-pr sections, updates examples to /do. |
| commands/sync-thoughts.md | Removes legacy slash-command wrapper file (now routed via /do). |
| commands/run.md | Removes legacy slash-command wrapper file (now routed via /do). |
| commands/review.md | Removes legacy slash-command wrapper file (now routed via /do). |
| commands/research.md | Removes legacy slash-command wrapper file (now routed via /do). |
| commands/pr.md | Removes legacy slash-command wrapper file (now routed via /do). |
| commands/polish.md | Removes legacy slash-command wrapper file (now routed via /do). |
| commands/plan.md | Removes legacy slash-command wrapper file (now routed via /do). |
| commands/loop.md | Removes legacy slash-command wrapper file (now routed via /do). |
| commands/learn.md | Removes legacy slash-command wrapper file (now routed via /do). |
| commands/learn_status.md | Removes legacy slash-command wrapper file (now routed via /do). |
| commands/handoff.md | Removes legacy slash-command wrapper file (now routed via /do). |
| commands/gc.md | Removes legacy slash-command wrapper file (now routed via /do). |
| commands/forget.md | Removes legacy slash-command wrapper file (now routed via /do). |
| commands/fleet.md | Removes legacy slash-command wrapper file (now routed via /do). |
| commands/experiment.md | Removes legacy slash-command wrapper file (now routed via /do). |
| commands/campaign.md | Removes legacy slash-command wrapper file (now routed via /do). |
| CLAUDE.md | Updates architecture/counts and clarifies /do as the single command entry point. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Eliminates crisscrossing lines by placing the loop node beneath run, campaign, and fleet instead of beside the router. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
- Use underscore IDs for hyphenated mermaid nodes to fix rendering - Clarify that only /do is installed, no direct /skill-name commands Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
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
.mdfiles fromcommands/left behind by Deduplicate skills and commands — route everything through /do #39 (onlydo.mdremains)docs/commands.mdas "Skill Reference" -- all headings/examples use skill names with/doroutinggcandcreate-prsections to the skill reference doc#gc--autonomous-commits,#pr--create-pull-requests)loop.md,planning.md) to use/doprefix in examplesTest plan
commands/only containsdo.md./installand confirm only/docommand is installeduv run python3 -m pytest tests/ -v🤖 Generated with Claude Code