From claudio
Breaks down implementation plans into detailed task lists with agent contexts, acceptance criteria, dependencies, priorities, complexity levels, and status tracking.
How this skill is triggered — by the user, by Claude, or both
Slash command
/claudio:task-breakdownThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Guide for creating detailed task lists and specialized agent contexts from implementation plans, enabling efficient parallel execution with clear acceptance criteria.
Guide for creating detailed task lists and specialized agent contexts from implementation plans, enabling efficient parallel execution with clear acceptance criteria.
Activate when:
## Task: [Task Name]
**ID**: [Phase].[Task Number]
**Priority**: High/Medium/Low
**Complexity**: Simple/Medium/Complex
### Description
[Detailed description of what needs to be implemented]
### Acceptance Criteria
- [ ] [Specific, testable requirement 1]
- [ ] [Specific, testable requirement 2]
- [ ] [Specific, testable requirement 3]
### Dependencies
- **Prerequisite Tasks**: [Tasks that must be completed first]
- **External Dependencies**: [Third-party services, approvals]
### Deliverables
- [Specific code files, configurations]
- [Test cases and validation results]
project/
├── phase1/
│ ├── claude.md (phase coordination)
│ ├── phase_status.md (phase progress)
│ ├── tasks.md (task list)
│ ├── task1/
│ │ ├── claude.md (task context)
│ │ └── status.md (task progress)
│ └── task2/
│ ├── claude.md (task context)
│ └── status.md (task progress)
├── phase2/
│ └── [similar structure]
└── shared/
└── utilities/
└── claude.md (shared context)
Create sub-tasks when:
Every task directory MUST contain:
Every phase directory MUST contain:
npx claudepluginhub vinnie357/claude-skills --plugin claudioBreaks work into ordered, verifiable tasks with acceptance criteria. Use when a spec or requirements need decomposition into implementable units, when a task feels too large, or when parallel work is possible.
Creates structured implementation task breakdowns from proposal, design, and specification artifacts, outputting self-contained per-task files for subagents.
Generates structured TASKS.json/md files with phased tasks, dependencies, story points, acceptance criteria, and agent prompts from features, PRDs, and SDDs.