From superpowers-ccg
Executes a written plan one phase at a time with Plan → Execute → Review gates. Use when running a plan, advancing the current phase, or continuing implementation in this session.
How this skill is triggered — by the user, by Claude, or both
Slash command
/superpowers-ccg:executing-plansThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Phase-by-phase runner. The Plan / Execute / Review gates, routing table, worker response format, and `.handover.md` schema all live in `coordinating-multi-model-work` — load it first.
Phase-by-phase runner. The Plan / Execute / Review gates, routing table, worker response format, and .handover.md schema all live in coordinating-multi-model-work — load it first.
<plan-dir>/.handover.md, then every file in its validated read_first list. If frontmatter is malformed, read PLAN.md and current-phase artifacts, then ask the user before execution.# ROUTE. Before creating phase files, require a clean index and clean declared phase files. Record phase_base, set phase-scoped session_refs, create <plan-dir>/phase-<NN>/, and update handover. The worker writes notes.md and the implementation response. The coordinator writes prompt.md before dispatch.coordinator — edit directly without committing before Review.codex (backend="codex") / agy (backend="agy") — write the dispatch prompt from implementer-prompt.md. Pass its repo-relative path, the repo-root cd, absolute bundled contract paths, and timeout_s=900. Reuse a cached identifier only when session_refs.phase matches. For same-phase fixes, send FIX: plus the delta. Cache only successful, non-empty identifiers and update handover after each call.phase_base. For code-changing phases, route code-quality review to codex in a fresh session using an explicit reviewer prompt, no named profile, and timeout_s=600. Reject missing notes blocks, implementation responses, or evidence. Append review output under ## Quality Review, finalize ## Review Result, and output # REVIEW.journal.md and .handover.md, then commit those state updates as chore(plan): record phase <N> handover. Never reset or squash.DONE and invoke verifying-before-completion.(Gate semantics, path rules, blocked-on-missing-artifacts, and MCP-failure handling are canonical in coordinating-multi-model-work. Executor specifics:)
.handover.md is always coordinator-authored and updated after every state change.skills/coordinating-multi-model-work/SKILL.md — canonical gates, routing, worker response format, and .handover.md schema.skills/executing-plans/implementer-prompt.md — dispatch prompt template for codex and agy phases.skills/verifying-before-completion/SKILL.md — final verification after the last phase.npx claudepluginhub sitien173/superpowers-ccg --plugin superpowers-ccgCreates structured, bite-sized implementation plans from specs or requirements before writing code. Useful for breaking down multi-step tasks into testable steps with file structure and task boundaries.