Execute complex tasks through sequential sub-agent orchestration, passing results forward at each step with model-routed agents and per-step verification.
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.
Execute a complex task as a chain of focused sub-agents, each building on the previous step's output.
Break the request into discrete, ordered steps. Each step must have:
Model Routing
| Complexity | Model | Use For |
|---|---|---|
| Simple | haiku | Lookups, reads, searches, summarization |
| Standard | sonnet | Implementation, file edits, refactoring |
| Complex | opus | Architecture, deep analysis, ambiguous design |
For each step N:
[Step N/Total] <Objective> — dispatching <agent> (<model>)Never dispatch step N+1 until step N is verified.
Summarize each completed step into a compact handoff:
Step N result: <2-3 sentence summary of what was done and key outputs>
Artifacts: <file paths or symbols changed/created>
Include this handoff block in every subsequent agent prompt. Keep it under 10 lines total regardless of how many steps have completed.
After all steps complete, deliver a unified summary:
oh-my-claudecode:architect## Step Plan
Step 1: <Objective> [haiku/sonnet/opus]
Step 2: <Objective> [haiku/sonnet/opus]
...
## Execution
[Step 1/N] <Objective> — complete
Result: <summary>
[Step 2/N] <Objective> — complete
Result: <summary>
...
## Summary
<What was accomplished end-to-end>
## Open Issues
<Unresolved items, or "None">