with one click
build
// Use when a user describes a new feature, screen, or full-stack capability to build — not for bug fixes, refactors, or simple changes
// Use when a user describes a new feature, screen, or full-stack capability to build — not for bug fixes, refactors, or simple changes
| name | build |
| description | Use when a user describes a new feature, screen, or full-stack capability to build — not for bug fixes, refactors, or simple changes |
Transforms a casual feature request into a structured full-stack development session. Orchestrates: parallel codebase research, interactive spec refinement, gap analysis, context-chunked planning, and verified implementation. Every phase gates on the previous one.
/build <description of what you want>
Example: /build login screen with email/password, Google OAuth, forgot password, and session persistence
Dispatch exactly 4 agents in parallel using the Agent tool. Each agent researches a different layer of the codebase for everything related to the user's ask:
packages/types/, and any seed data related to the feature scope.Wait for all 4 agents to complete. Compile their findings into a single codebase context summary before moving on.
Invoke the superpowers brainstorming skill. Using the research from Phase 1, quiz the user on every detail they did not cover in their ask. One question at a time. Focus on:
Write the spec. Run the spec review cycle per the brainstorming skill.
After the first spec review passes, run a second full gap analysis. This is not optional. Prompt yourself:
"Review this spec one more time with fresh eyes. Look for anything we missed — edge cases, mobile-specific behavior, multi-user state, error recovery, regressions to existing features, accessibility, and any assumptions that survived the first review."
Fix the spec. Re-run spec review if changes were substantial.
Invoke the superpowers writing-plans skill. Compile the finalized spec into an implementation plan broken into sequential chunks, each sized to fit within ~200k context tokens. Each chunk must be:
Typical chunking for a full-stack feature:
For each chunk in sequence:
/compact to reclaim context before starting the next chunkDo not start the next chunk until the current one passes verification.
After all chunks are complete:
/compact between every chunk — no exceptions[HINT] Download the complete skill directory including SKILL.md and all related files