fix(commands): use fully-qualified agent namespace in Task invocations#248
Open
mvanhorn wants to merge 1 commit intoEveryInc:mainfrom
Open
fix(commands): use fully-qualified agent namespace in Task invocations#248mvanhorn wants to merge 1 commit intoEveryInc:mainfrom
mvanhorn wants to merge 1 commit intoEveryInc:mainfrom
Conversation
Task invocations in ce:plan, ce:brainstorm, and ce:review used bare agent names (e.g. "repo-research-analyst") which fail with "Agent type not found" because the plugin registers them with the compound-engineering:category:name namespace. Updated all bare agent references to use fully-qualified names matching the pattern in orchestrating-swarms/SKILL.md. Fixes EveryInc#199 Co-Authored-By: Claude Opus 4.6 <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
ce:plan,ce:brainstorm, andce:reviewto use fully-qualifiedcompound-engineering:category:namenamespaceTask repo-research-analyst(...)fail with "Agent type not found" because the plugin registers agents under thecompound-engineering:research:orcompound-engineering:review:namespaceFixes #199
Changes
commands/ce/plan.md(4 refs):repo-research-analyst->compound-engineering:research:repo-research-analystlearnings-researcher->compound-engineering:research:learnings-researcherbest-practices-researcher->compound-engineering:research:best-practices-researcherframework-docs-researcher->compound-engineering:research:framework-docs-researchercommands/ce/brainstorm.md(1 ref):repo-research-analyst->compound-engineering:research:repo-research-analystcommands/ce/review.md(6 refs):agent-native-reviewer->compound-engineering:review:agent-native-reviewerlearnings-researcher->compound-engineering:research:learnings-researcherschema-drift-detector->compound-engineering:review:schema-drift-detectordata-migration-expert->compound-engineering:review:data-migration-expertdeployment-verification-agent->compound-engineering:review:deployment-verification-agentcode-simplicity-reviewer->compound-engineering:review:code-simplicity-reviewerThe
general-purposeagent type references were left unchanged as that is a built-in Claude Code agent type.Test plan
/ce:planand verify agents are dispatched without "Agent type not found" errors/ce:reviewand verify review agents launch correctlyThis contribution was developed with AI assistance (Claude Code).