Consolidate setup commands: drop legacy /setup-orchestrator + /sync-orchestrator pointer stubs - #89
Merged
Conversation
…ubs (#88) Both were legacy pointer stubs that just redirected to the already-existing /orchestrator:setup and /orchestrator:sync skills. Delete the duplicated stub files, drop them from the plugin.json commands allowlist, and update docs (README, PROMPTS.md, MIGRATION.md) to reference the skills directly. Co-Authored-By: Claude Sonnet 5 <[email protected]> Claude-Session: https://claude.ai/code/session_01FAt95dUGgT29goWKogFe8Z
robercano
approved these changes
Jul 9, 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.
What & why
Consolidates first-time onboarding to a single discoverable entry point. Two legacy pointer stubs under
.claude/commands/merely redirected to interactive skills that already exist, so they read like duplicate flows in the command list:.claude/commands/setup-orchestrator.md→ redirected to the/orchestrator:setupskill (.claude/skills/setup/SKILL.md).claude/commands/sync-orchestrator.md→ redirected to the/orchestrator:syncskill (.claude/skills/sync/SKILL.md)Changes
.claude/.claude-plugin/plugin.json— dropped both entries from thecommandsallowlist (otherwise the manifest would point at deleted files). Remaining entries (harden.md,pr-loop.md,test-pr.md) all still resolve..claude/.claude-plugin/README.md— removed/setup-orchestratorand/sync-orchestratorfrom the listed slash commands.docs/PROMPTS.md— updated/setup-orchestratorreferences to/orchestrator:setup.docs/MIGRATION.md— droppedsetup-orchestrator.mdfrom the.claude/commands/inventory.Decision on the
sync-orchestrator.mdsibling stubThe issue flagged
sync-orchestrator.mdas a judgment call. It is byte-for-byte the same duplication pattern (a pointer stub redirecting to an existing/orchestrator:syncskill), so it is included in this PR rather than filed as a near-duplicate follow-up issue. The colon-form commands/orchestrator:setupand/orchestrator:syncare preserved everywhere — only the legacy hyphen names and their stub files are removed.Acceptance criteria
/orchestrator:setup) is discoverable for first-time onboarding./setup-orchestrator.Verification
Gates (via
GATES_FILE=.claude/self/gates.json):buildPASS,lintPASS,testPASS (static checks + smoke-fanout). Reviewed undercorrectnessandtestslenses (consensus all) — both approve.grepforsetup-orchestrator/sync-orchestratoracross the real tree is clean.Closes #88
🤖 Generated with Claude Code