원클릭으로
plan
Decompose work into small testable tasks with clear dependencies
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Decompose work into small testable tasks with clear dependencies
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Audit and set up a codebase for agentic AI development using the 16-principle manifesto
Reviews code for architectural compliance and design integrity
Injects mistake-derived test requirements into the TDD pipeline
Clusters similar lessons and synthesizes testable patterns
Reviews UI code for design quality against the build-great-things quality checklist. Conditional — only activates when the Verification Contract includes design_craft_check evidence.
Analyzes repository structure, conventions, and patterns
| name | Plan |
| description | Decompose work into small testable tasks with clear dependencies |
| phase | plan |
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.