From cc-meta
Fan out tasks to parallel background agents with independent context windows. Use when work can be split into independent units that benefit from isolated execution.
How this skill is triggered — by the user, by Claude, or both
Slash command
/cc-meta:orchestrating-parallel-workersThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
**Target**: $ARGUMENTS
Target: $ARGUMENTS
Decomposes work into independent units and dispatches them to parallel background agents. Each agent gets its own context window, preventing cross-contamination between unrelated tasks.
Split the user request into independent work units. Each unit must be:
For each unit, define:
| Field | Description |
|---|---|
| Name | Short identifier (e.g., worker-auth, worker-docs) |
| Type | worktree for file changes, shared for read-only research |
| Prompt | Complete, self-contained instructions (no shared context) |
| Output | What the agent should produce and where |
Launch all agents in a single message with multiple Agent tool calls. This ensures true parallel execution. Each agent prompt must include:
Use TaskCreate for each dispatched unit to give the user visibility:
TaskCreate: "worker-auth: implement OAuth module" — status: in_progress
TaskCreate: "worker-docs: write API reference" — status: in_progress
Update tasks as agents complete via TaskUpdate.
After all agents finish:
| Mode | Use when | File access |
|---|---|---|
worktree | Agent creates/edits files | Isolated copy, lead merges |
shared | Agent only reads/researches | Shared repo, no writes |
npx claudepluginhub qte77/claude-code-plugins --plugin cc-metaCreates, edits, and optimizes skills for Claude Code, including drafting, evaluating with test prompts, iterating on performance, and improving skill descriptions for better triggering accuracy.