Create optimized prompts for Claude-to-Claude pipelines with research, planning, and execution stages. Use when building prompts that produce outputs for other prompts to consume, or when running multi-stage workflows (research -> plan -> implement).
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.
Every execution produces a SUMMARY.md for quick human scanning. Each prompt gets its own folder in .prompts/ with output artifacts, enabling clear provenance and chain detection.
</objective>
<folder_structure>
.prompts/
├── 001-auth-research/
│ ├── completed/001-auth-research.md # archived after run
│ ├── auth-research.md # full output (XML for Claude)
│ └── SUMMARY.md # executive summary (markdown for human)
├── 002-auth-plan/
│ ├── completed/002-auth-plan.md
│ ├── auth-plan.md
│ └── SUMMARY.md
└── 003-auth-implement/
├── completed/003-auth-implement.md
└── SUMMARY.md
</folder_structure>
<intake> If no context provided, ask for purpose: Do / Plan / Research / Refine.If context provided, infer purpose from keywords:
implement, build, create, fix → Doplan, roadmap, strategy, phases → Planresearch, understand, analyze, explore → Researchrefine, improve, iterate, update → RefineExtract topic identifier (kebab-case, e.g. auth, stripe-payments). Ask 2-4 clarifying questions based on purpose gaps. Confirm before generating.
</intake>
<prompt_structure> All generated prompts include:
For Research and Plan outputs, require these XML tags:
<confidence> — confidence level in findings<dependencies> — what's needed to proceed<open_questions> — what remains uncertain<assumptions> — what was assumedSUMMARY.md must contain: one-liner, Key Findings, Decisions Needed, Blockers, Next Step. </prompt_structure>
<execution> Detect dependencies by scanning prompts for `@.prompts/{number}-{topic}/` references.Sequential: chained prompts where each depends on previous output — execute in order, stop on failure.
Parallel: independent prompts with no dependencies — spawn all Task agents in a single message.
Mixed: build dependency layers, run parallel within each layer, sequential between layers.
After each completion: validate output exists, is non-empty, has required metadata tags and SUMMARY.md. Archive prompt to completed/ subfolder on success.
Show inline SUMMARY.md content in results so user sees findings without opening files. </execution>
<failure_handling> Sequential failure: stop chain, report completed/failed/not-started, offer retry or stop.
Parallel failure: continue others, collect all results, report failures with details, offer retry.
Missing dependencies: warn user, offer to create missing prompt first or continue anyway. </failure_handling>
<success_criteria>
.prompts/ with correct namingcompleted/