ai-prompting
Effective communication strategies for AI-assisted development. Learn context-first prompting, phased interactions, iterative refinement, and validation…
Convert technical designs into actionable, sequenced implementation tasks. Create clear coding tasks that enable incremental progress, respect dependencies, and provide a roadmap for systematic feature development.
$ npx -y skills add jasonkneen/kiro --skill task-breakdown --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/task-breakdownContext preview
The summary Claude sees to decide when to auto-load this skill.
Convert technical designs into actionable, sequenced implementation tasks. Create clear coding tasks that enable incremental progress, respect dependencies, and provide a roadmap for systematic feature development.
name: task-breakdown description: Convert technical designs into actionable, sequenced implementation tasks. Create clear coding tasks that enable incremental progress, respect dependencies, and provide a roadmap for systematic feature development. license: MIT compatibility: Claude Code, Cursor, VS Code, Windsurf metadata: category: methodology complexity: intermediate author: Kiro Team version: "1.0.0"
Transform designs into actionable implementation plans. This skill teaches how to create well-structured task lists that enable efficient, systematic development.
Use task breakdown when:
- [ ] 1. [Epic/Major Component] - [ ] 1.1 [Specific implementation task] - [Implementation details] - [Files/components to create] - _Requirements: [Requirement references]_ - [ ] 1.2 [Next specific task] - [Details] - _Requirements: [References]_ - [ ] 2. [Next Epic/Major Component] - [ ] 2.1 [Specific task]
Each task should include: 1. **Clear Objective:** What specific code to write/modify 2. **Implementation Details:** Files, components, functions 3. **Requirements Reference:** Which requirements this implements 4. **Completion Criteria:** How to know the task is done
Identify all implementation needs:
Map what needs to be built first:
Order tasks to:
For each task, specify:
- [ ] X.Y [Task Title] - [What to implement] - [Files to create/modify] - [Key functionality] - [Tests to write] - _Requirements: [Req-1, Req-2]_
Build core infrastructure before features.
1. Project setup and core interfaces 2. Data models and validation 3. Data access layer 4. Business logic services 5. API endpoints 6. Integration and wiring
**Best for:** New projects, complex systems
Build complete features end-to-end.
1. User registration (complete flow) 2. User authentication (complete flow) 3. User profile management (complete flow) 4. Advanced features
**Best for:** MVP development, early validation
Tackle uncertain areas early.
1. Most complex/uncertain components 2. External integrations 3. Core business logic 4. User interface 5. Polish and optimization
**Best for:** High uncertainty, proof-of-concepts
Combine approaches pragmatically.
1. Minimal foundation (core interfaces) 2. High-risk/high-value feature slice 3. Expand foundation as needed 4. Additional feature slices 5. Integration and polish
- [ ] 1. Set up project foundation - [ ] 1.1 Create project structure and interfaces - Set up directory structure - Define TypeScript interfaces for core types - Configure testing framework - _Requirements: 1.1_
- [ ] 2. Implement data layer - [ ] 2.1 Create core data models - Implement User model with validation - Add database migrations - Write unit tests for validation - _Requirements: 2.1, 2.2_
- [ ] 3. Implement business logic - [ ] 3.1 Create authentication service - Implement registration logic - Add password hashing - Create session management - Write unit tests - _Requirements: 1.2, 4.1_
- [ ] 4. Implement API layer - [ ] 4.1 Create user endpoints - Implement POST /users endpoint - Add request validation - Write integration tests - _Requirements: 1.2, 2.3_
- [ ] 5. Integration and testing - [ ] 5.1 Wire up components - Connect services to API layer - Implement middleware - Add end-to-end tests - _Requirements: 5.1_
- [ ] 2.1 Create User model with validation - Implement User class with email, password, name fields - Add email validation (RFC 5322 format) - Add password validation (8+ chars, mixed case, numbers) - Write unit tests for valid/invalid scenarios - _Requirements: 1.2, 2.1_
- [ ] 2.1 Build user stuff - Make user things work - _Requirements: 1.2_
**Appropriate:** 2-4 hours of focused work
**Too Large:**
- [ ] 1.1 Implement complete user management system
**Too Small:**
- [ ] 1.1 Add semicolon to line 42
**Just Right:**
- [ ] 1.1 Create User model with validation methods
**Technical Dependencies:**
- [ ] 1.1 Create database connection ← Foundation - [ ] 2.1 Create User model ← Depends on 1.1 - [ ] 3.1 Create UserService ← Depends on 2.1
**Logical Dependencies:**
- [ ] 1.1 User registration ← Must exist first - [ ] 2.1 User login ← Depends on 1.1 - [ ] 3.1 Password reset ← Depends on 2.1
**Problem:**
UserService needs AuthService AuthService needs UserS
A comprehensive guide to systematic feature development using the three-phase spec process: Requirements → Design → Tasks.
Repo: jasonkneen/kiro
Effective communication strategies for AI-assisted development. Learn context-first prompting, phased interactions, iterative refinement, and validation…
Create comprehensive steering documents for development projects. Generates project-specific standards, git workflows, and technology guidelines in…
Transform approved requirements into comprehensive technical designs. Define system architecture, component interactions, data models, and interfaces to create…
Comprehensive testing and validation strategies for spec-driven development. Learn phase-specific validation techniques, quality gates, and testing approaches…
Transform vague feature ideas into clear, testable requirements using EARS format. Capture user stories, define acceptance criteria, identify edge cases, and…
Systematic three-phase approach to feature development using Requirements, Design, and Tasks phases. Transforms vague feature ideas into well-defined,…