원클릭으로
task-breakdown
Use when decomposing an implementation plan into executable tasks with dependencies and sizing.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Use when decomposing an implementation plan into executable tasks with dependencies and sizing.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Use before marking any task complete. Runs the project's validation suite (lint, typecheck, tests) and confirms the implementation is in a working state. Use this whenever you have finished implementing a task and need to verify it before calling task_complete.
Create distinctive, production-grade frontend interfaces with high design quality. Use this skill when the user asks to build web components, pages, artifacts, posters, or applications (examples include websites, landing pages, dashboards, React components, HTML/CSS layouts, or when styling/beautifying any web UI). Generates creative, polished code and UI design that avoids generic AI aesthetics.
Use when reviewing architecture decisions, implementation plans, or PRs against layering, boundaries, and system design expectations.
Use when implementing code changes to ensure quality, consistency, and maintainability.
Use when bootstrapping a repository for Spec-Driven Development. Scan the codebase, ask 2 targeted questions, then write specs/constitution.md and the first epic's product-requirements.md.
Use when reviewing a change against spec intent, correctness, maintainability, and test coverage.
| name | task-breakdown |
| description | Use when decomposing an implementation plan into executable tasks with dependencies and sizing. |
Defines how to decompose an implementation plan into executable, dependency-aware tasks with proper sizing and acceptance criteria.
Use this skill when breaking down an implementation plan into a concrete, executable task list.
A task list bridges the gap between the plan (what to build technically) and the implementation (what to do next). Each task should be a single, completable unit of work that an agent or developer can execute in one session.
depends: [task-id][P]Each task should include:
### Task [ID]: [Short descriptive title]
**Plan reference**: [Section of plan.md this implements]
**Dependencies**: [task IDs, or "none"]
**Parallel**: [Yes/No]
**Files likely affected**: [list of files]
**Description**: [1-2 sentences — what to do]
**Acceptance**: [How to verify this task is complete]
E2E requirement: If a task produces a user-visible behavior change (screen state, heading, flow), its acceptance criteria must include an E2E test passing. Example: "npm run test:e2e passes with a test that asserts [expected heading/state]."
The task list should be created as specs/[feature-name]/tasks.md following the template at specs/templates/tasks.md. Tasks must produce a dependency-aware execution graph — not a flat list.