en un clic
plan
Decompose work into small testable tasks with clear dependencies
Installer avec Codex ou Claude Copiez ce prompt, collez-le dans Codex, Claude ou un autre assistant, puis laissez-le vérifier la page du skill et l'installer pour vous.
Menu
Decompose work into small testable tasks with clear dependencies
Installer avec Codex ou Claude Copiez ce prompt, collez-le dans Codex, Claude ou un autre assistant, puis laissez-le vérifier la page du skill et l'installer pour vous.
Basé sur la classification professionnelle SOC
Decompose a large system specification into cook-it-ready epic beads via DDD bounded contexts, with optional post-epic improvement loop configuration
Multi-agent review with lesson-calibrated reviewers, runtime verification, and severity classification
Comprehensive playbook for building world-class websites, landing pages, web applications, and dashboards. Covers the full build sequence from brand identity and information architecture through layout, typography, color, scroll animations, micro-interactions, hover effects, loading states, empty states, error handling, accessibility, SEO, and conversion optimization. Use this skill whenever building a new website or web app from scratch, redesigning pages (pricing, landing, portfolio), adding polish or animations, fixing generic-looking UI, improving visual hierarchy, or when the user says anything looks "janky", "generic", "amateur", or "needs more polish". Also use when adding hover states, scroll effects, page transitions, or doing a design review pass.
Reflect on the cycle and capture high-quality lessons for future sessions
Develop precise specifications through Socratic dialogue, EARS notation, and Mermaid diagrams
Team-based TDD execution with adaptive complexity and agent delegation
| name | Plan |
| description | Decompose work into small testable tasks with clear dependencies |
Create a concrete implementation plan by decomposing work into small, testable tasks with dependencies and acceptance criteria.
Read the spec from the epic description (bd show <epic>) for EARS requirements, decisions, and open questions. Verify its type is epic -- if it was created as task, fix with bd update <id> --type=epic
Search memory with ca search and docs with ca knowledge "relevant topic" for architectural patterns and past mistakes
Spawn subagents via Task tool in parallel for research (lightweight, no inter-agent coordination):
.claude/agents/compound/repo-analyst.md, memory-analyst.mdFor decisions requiring deep technical grounding, invoke the researcher skill to produce a survey document. Review findings before decomposing into tasks.
Synthesize research findings into a coherent approach. Flag conflicts between ADRs and proposed plan.
Use AskUserQuestion to resolve ambiguities, conflicting constraints, or priority trade-offs before decomposing
Decompose into tasks small enough to verify individually
Define acceptance criteria for each task
Ensure each task traces back to a spec requirement for traceability
Generate Acceptance Criteria table: Extract testable criteria from EARS requirements and append to the epic description. Use this format:
## Acceptance Criteria
| ID | Source Req | Criterion | Verification Method |
|----|-----------|-----------|---------------------|
| AC-1 | EARS-N | When X, system shall Y within Z | unit test / manual / integration |
Rules:
bd update <epic-id> --description="<existing desc + AC section>"Generate Verification Contract: Derive a minimal, per-epic definition of done and append it to the epic description after the Acceptance Criteria section. Use this format:
## Verification Contract
Profile: webapp | api | cli | library | service | mixed
Surfaces:
- ui_surface
Risks:
- user_visible_quality
Required evidence:
- test
- lint
- build
Rules:
webapp -> test, lint, build, runtime_startup, browser_evidenceapi -> test, lint, build, runtime_startup, contract_checkscli -> test, lint, build, help_version_check, command_transcriptlibrary -> test, lint, build, examples_run, public_api_reviewservice -> test, lint, build, runtime_startup, config_validationui_surface -> responsive_check, edge_states_check, console_network_clean, a11y_smoke, design_craft_checkpublic_api -> contract_examples, backward_compat_reviewpersistence_schema -> roundtrip_test, migration_check, backcompat_checkpackaging_or_distribution -> package_build, install_smokedocs_or_examples -> docs_examples_syncauth_or_security -> auth_failure_pathsperformance_sensitive -> performance_budget_checkSurfaces and Risks; prefer consistency over novelty.AskUserQuestion once before finalizing the plan.bd update <epic-id> --description="<existing desc + AC section + Verification Contract section>"Map dependencies between tasks
Create beads issues: bd create --title="..." --type=task
Create review and compound blocking tasks (bd create + bd dep add) that depend on work tasks — these survive compaction and surface via bd ready after work completes
ca search and ca knowledge "relevant topic" for patterns related to the feature areadocs/ for relevant specs, standards, and researchdocs/decisions/ for existing ADRs that constrain or inform the planAskUserQuestion before decomposingAfter creating all tasks, verify review and compound tasks exist:
bd list --status=open and check for a "Review:" task and a "Compound:" taskbd show <epic-id> and confirm the ## Acceptance Criteria section exists in the description. If missing, the plan is NOT complete.bd show <epic-id> and confirm the ## Verification Contract section exists in the description. If missing, the plan is NOT complete.