agent-orchestration
Agent Orchestration Rules
适合你,如果需要管理多个AI智能体协同工作
用别的 agent?下载 .zip 解压,把文件夹放进它的技能目录
~/.claude/skills/(项目级 .claude/skills/)~/.codex/skills/npx oh-my-skill add parcadei/continuous-claude-v3/agent-orchestrationcurl -fsSL https://oh-my-skill.com/install.sh | bash -s -- parcadei/continuous-claude-v3/agent-orchestrationnpx oh-my-skill verify parcadei/continuous-claude-v3/agent-orchestration怎么用
商店整理自技能原文 · 版本 d07ff4b · 表述以原文为准当你要实现多文件功能时,Claude 会启动子代理来执行具体任务,只把摘要返回主对话,节省主上下文空间。
当你要求实现新功能、遵循计划阶段或提到“implement”、“build”等关键词时触发。
技能原文 SKILL.md
Agent Orchestration Rules
When the user asks to implement something, use implementation agents to preserve main context.
The Pattern
Wrong - burns context:
Main: Read files → Understand → Make edits → Report
(2000+ tokens consumed in main context)
Right - preserves context:
Main: Spawn agent("implement X per plan")
↓
Agent: Reads files → Understands → Edits → Tests
↓
Main: Gets summary (~200 tokens)
When to Use Agents
| Task Type | Use Agent? | Reason | |-----------|------------|--------| | Multi-file implementation | Yes | Agent handles complexity internally | | Following a plan phase | Yes | Agent reads plan, implements | | New feature with tests | Yes | Agent can run tests | | Single-line fix | No | Faster to do directly | | Quick config change | No | Overhead not worth it |
Key Insight
Agents read their own context. Don't read files in main chat just to understand what to pass to an agent - give them the task and they figure it out.
Example Prompt
Implement Phase 4: Outcome Marking Hook from the Artifact Index plan. **Plan location:** thoughts/shared/plans/2025-12-24-artifact-index.md (search for "Phase 4") **What to create:** 1. TypeScript hook 2. Shell wrapper 3. Python script 4. Register in settings.json When done, provide a summary of files created and any issues.
Trigger Words
When user says these, consider using an agent:
- "implement", "build", "create feature"
- "follow the plan", "do phase X"
- "use implementation agents"