Break complex tasks into discrete subtasks and coordinate specialized agents with parallel dispatch and progress tracking.
From cc-setupnpx claudepluginhub krzemienski/cc-setup --plugin cc-setupThis skill uses the workspace's default tool permissions.
Guides Next.js Cache Components and Partial Prerendering (PPR) with cacheComponents enabled. Implements 'use cache', cacheLife(), cacheTag(), revalidateTag(), static/dynamic optimization, and cache debugging.
Migrates code, prompts, and API calls from Claude Sonnet 4.0/4.5 or Opus 4.1 to Opus 4.5, updating model strings on Anthropic, AWS, GCP, Azure platforms.
Details PluginEval's skill quality evaluation: 3 layers (static, LLM judge), 10 dimensions, rubrics, formulas, anti-patterns, badges. Use to interpret scores, improve triggering, calibrate thresholds.
Coordinate specialized agents to complete complex multi-step tasks efficiently.
Restate the task in your own words. Break it into discrete subtasks with clear boundaries and explicit dependencies. Classify each subtask by type so you can route to the right agent.
Map each subtask to an agent and identify which can run in parallel vs. sequentially.
Agent Routing
| Agent | Use For |
|---|---|
oh-my-claudecode:executor | Code implementation, file edits |
oh-my-claudecode:planner | Feature design, phase breakdown |
oh-my-claudecode:architect | System design, interfaces |
oh-my-claudecode:debugger | Root cause analysis, bug fixes |
oh-my-claudecode:build-fixer | Build errors, type failures |
oh-my-claudecode:explore | Codebase discovery, symbol mapping |
oh-my-claudecode:verifier | Completion evidence, claim validation |
oh-my-claudecode:quality-reviewer | Logic defects, maintainability |
Execution Patterns
Sequential (later tasks depend on earlier):
agent-A → agent-B → agent-C
Parallel (independent tasks):
┌→ agent-A ─┐
trigger →├→ agent-B ─┼→ synthesize
└→ agent-C ─┘
For each phase, announce it before dispatching:
[Phase 1/N] <Name> — dispatching <agent>
[Phase 2/N] <Name> — parallel dispatch: <agent-A>, <agent-B>
[Phase N/N] Synthesizing results
Dispatch independent tasks in the same message using parallel Task calls. Wait for results before starting dependent phases.
Pass full context to every agent: relevant file paths, function names, code snippets, and the specific subtask scope. Never spawn an agent without context.
After all phases complete, combine agent outputs into a unified result. Resolve any conflicts between agent outputs. Report what was completed, what changed, and any unresolved issues.
Confirm the work meets the original requirements. If anything is incomplete, dispatch a targeted follow-up agent rather than re-running the full orchestration.
oh-my-claudecode:architect## Execution Plan
Phase 1: <Name> [agent]
Phase 2: <Name> [agent-A, agent-B — parallel]
Phase 3: Validation [verifier]
## Progress
[Phase 1/3] <Name> — complete
[Phase 2/3] <Name> — complete
[Phase 3/3] Validation — complete
## Results
<Unified summary of what was built/changed>
## Unresolved
<Any issues that need follow-up, or "None">