
Planning And Task Breakdown
- 17k installs
- 80.7k repo stars
- Updated July 26, 2026
- addyosmani/agent-skills
How to decompose work into ordered, implementable tasks with dependencies, acceptance criteria, and verification steps that enable reliable parallel execution.
About
Skill teaches decomposition of software work into small, verifiable tasks with explicit acceptance criteria, dependency graphs, and vertical slicing. Developers use it when facing large specs that feel too vague to start, when parallelizing work across agents, or when communicating scope. Workflow: read spec in plan mode, map dependencies bottom-up, slice vertically (one complete feature path per task), write tasks with criteria/verification/file impacts, order by dependencies, insert checkpoints after phases. Key: tasks must fit 1-2 hour sessions, touch max 5 files, have 3 or fewer acceptance criteria. Prevents tangled implementations and rework.
- Vertical slicing: build complete feature paths end-to-end rather than all database then all API then all UI
- Dependency graph mapping ensures tasks follow correct order and foundations are built first
- Task template includes acceptance criteria, verification steps, file impacts, and explicit dependencies
- Checkpoint architecture after 2-3 tasks prevents divergence and surfaces issues early
- Parallelization guidance identifies independent slices safe for concurrent agents vs sequential bottlenecks
Planning And Task Breakdown by the numbers
- 17,036 all-time installs (skills.sh)
- +2,545 installs in the week ending Jul 28, 2026 (Skillselion tracking)
- Ranked #82 of 3,301 Productivity & Planning skills by installs in the Skillselion catalog
- Security screen: MEDIUM risk (skills.sh audit)
- Data as of Jul 28, 2026 (Skillselion catalog sync)
planning-and-task-breakdown capabilities & compatibility
- Capabilities
- dependency graph analysis and mapping · vertical slice identification for features · task sizing and granularity assessment · acceptance criteria formulation · implementation order sequencing · parallelization opportunity identification · checkpoint placement and verification design
- Use cases
- planning · project management · code review · orchestration
What planning-and-task-breakdown says it does
Good task breakdown is the difference between an agent that completes work reliably and one that produces a tangled mess. Every task should be small enough to implement, test, and verify in a single f
If a task is L or larger, it should be broken into smaller tasks. An agent performs best on S and M tasks.
Planning is the task. Implementation without a plan is just typing.
npx skills add https://github.com/addyosmani/agent-skills --skill planning-and-task-breakdownAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| Installs | 17k |
|---|---|
| repo stars | ★ 80.7k |
| Security audit | 3 / 3 scanners passed |
| Last updated | July 26, 2026 |
| Repository | addyosmani/agent-skills ↗ |
What it does
Break large features into ordered, implementable tasks with acceptance criteria and dependency tracking for reliable multi-agent execution.
Who is it for?
Features with clear specs, large codebases needing parallelization, multi-agent projects, communicating scope to humans, identifying hidden dependencies and implementation order.
Skip if: Single-file obvious changes, specs already containing well-defined granular tasks, exploratory/research work without clear requirements.
When should I use this skill?
Before starting implementation of a feature, when a task feels too large to begin, when work needs parallelizing, when estimating scope, when order is unclear.
What you get
Clear task list with explicit dependencies, acceptance criteria, and file-impact estimates that agents execute reliably in correct order with checkpoints preventing divergence.
- ordered task list
- per-task acceptance criteria
By the numbers
- Tasks should target S (1-2 files) or M (3-5 files) sizes; L (5-8 files) or XL (8+) indicate needed decomposition
- Insert checkpoints after every 2-3 tasks to verify working state and surface issues early
- Acceptance criteria should be 3 or fewer bullet points; more indicates task is too large
Files
Planning and Task Breakdown
Overview
Decompose work into small, verifiable tasks with explicit acceptance criteria. Good task breakdown is the difference between an agent that completes work reliably and one that produces a tangled mess. Every task should be small enough to implement, test, and verify in a single focused session.
When to Use
- You have a spec and need to break it into implementable units
- A task feels too large or vague to start
- Work needs to be parallelized across multiple agents or sessions
- You need to communicate scope to a human
- The implementation order isn't obvious
When NOT to use: Single-file changes with obvious scope, or when the spec already contains well-defined tasks.
The Planning Process
Step 1: Enter Plan Mode
Before writing any code, operate in read-only mode:
- Read the spec and relevant codebase sections
- Identify existing patterns and conventions
- Map dependencies between components
- Note risks and unknowns
Do NOT write code during planning. The output is a plan document, not implementation.
Step 2: Identify the Dependency Graph
Map what depends on what:
Database schema
│
├── API models/types
│ │
│ ├── API endpoints
│ │ │
│ │ └── Frontend API client
│ │ │
│ │ └── UI components
│ │
│ └── Validation logic
│
└── Seed data / migrationsImplementation order follows the dependency graph bottom-up: build foundations first.
Step 3: Slice Vertically
Instead of building all the database, then all the API, then all the UI — build one complete feature path at a time:
Bad (horizontal slicing):
Task 1: Build entire database schema
Task 2: Build all API endpoints
Task 3: Build all UI components
Task 4: Connect everythingGood (vertical slicing):
Task 1: User can create an account (schema + API + UI for registration)
Task 2: User can log in (auth schema + API + UI for login)
Task 3: User can create a task (task schema + API + UI for creation)
Task 4: User can view task list (query + API + UI for list view)Each vertical slice delivers working, testable functionality.
Step 4: Write Tasks
Each task follows this structure:
## Task [N]: [Short descriptive title]
**Description:** One paragraph explaining what this task accomplishes.
**Acceptance criteria:**
- [ ] [Specific, testable condition]
- [ ] [Specific, testable condition]
**Verification:**
- [ ] Tests pass: `npm test -- --grep "feature-name"`
- [ ] Build succeeds: `npm run build`
- [ ] Manual check: [description of what to verify]
**Dependencies:** [Task numbers this depends on, or "None"]
**Files likely touched:**
- `src/path/to/file.ts`
- `tests/path/to/test.ts`
**Estimated scope:** [Small: 1-2 files | Medium: 3-5 files | Large: 5+ files]Step 5: Order and Checkpoint
Arrange tasks so that:
1. Dependencies are satisfied (build foundation first) 2. Each task leaves the system in a working state 3. Verification checkpoints occur after every 2-3 tasks 4. High-risk tasks are early (fail fast)
Add explicit checkpoints:
## Checkpoint: After Tasks 1-3
- [ ] All tests pass
- [ ] Application builds without errors
- [ ] Core user flow works end-to-end
- [ ] Review with human before proceedingTask Sizing Guidelines
| Size | Files | Scope | Example |
|---|---|---|---|
| XS | 1 | Single function or config change | Add a validation rule |
| S | 1-2 | One component or endpoint | Add a new API endpoint |
| M | 3-5 | One feature slice | User registration flow |
| L | 5-8 | Multi-component feature | Search with filtering and pagination |
| XL | 8+ | Too large — break it down further | — |
If a task is L or larger, it should be broken into smaller tasks. An agent performs best on S and M tasks.
When to break a task down further:
- It would take more than one focused session (roughly 2+ hours of agent work)
- You cannot describe the acceptance criteria in 3 or fewer bullet points
- It touches two or more independent subsystems (e.g., auth and billing)
- You find yourself writing "and" in the task title (a sign it is two tasks)
Plan Document Template
# Implementation Plan: [Feature/Project Name]
## Overview
[One paragraph summary of what we're building]
## Architecture Decisions
- [Key decision 1 and rationale]
- [Key decision 2 and rationale]
## Task List
### Phase 1: Foundation
- [ ] Task 1: ...
- [ ] Task 2: ...
### Checkpoint: Foundation
- [ ] Tests pass, builds clean
### Phase 2: Core Features
- [ ] Task 3: ...
- [ ] Task 4: ...
### Checkpoint: Core Features
- [ ] End-to-end flow works
### Phase 3: Polish
- [ ] Task 5: ...
- [ ] Task 6: ...
### Checkpoint: Complete
- [ ] All acceptance criteria met
- [ ] Ready for review
## Risks and Mitigations
| Risk | Impact | Mitigation |
|------|--------|------------|
| [Risk] | [High/Med/Low] | [Strategy] |
## Open Questions
- [Question needing human input]Parallelization Opportunities
When multiple agents or sessions are available:
- Safe to parallelize: Independent feature slices, tests for already-implemented features, documentation
- Must be sequential: Database migrations, shared state changes, dependency chains
- Needs coordination: Features that share an API contract (define the contract first, then parallelize)
Common Rationalizations
| Rationalization | Reality |
|---|---|
| "I'll figure it out as I go" | That's how you end up with a tangled mess and rework. 10 minutes of planning saves hours. |
| "The tasks are obvious" | Write them down anyway. Explicit tasks surface hidden dependencies and forgotten edge cases. |
| "Planning is overhead" | Planning is the task. Implementation without a plan is just typing. |
| "I can hold it all in my head" | Context windows are finite. Written plans survive session boundaries and compaction. |
Red Flags
- Starting implementation without a written task list
- Tasks that say "implement the feature" without acceptance criteria
- No verification steps in the plan
- All tasks are XL-sized
- No checkpoints between tasks
- Dependency order isn't considered
Verification
Before starting implementation, confirm:
- [ ] Every task has acceptance criteria
- [ ] Every task has a verification step
- [ ] Task dependencies are identified and ordered correctly
- [ ] No task touches more than ~5 files
- [ ] Checkpoints exist between major phases
- [ ] The human has reviewed and approved the plan
See Also
Acceptance criteria are per-task and answer "did we build the right thing?". They sit on top of the project-wide Definition of Done, the standing bar every task clears before it counts as done. See references/definition-of-done.md.
Related skills
How it compares
Pick planning-and-task-breakdown over architecture skills when you already have requirements and need executable task lists rather than system diagrams.
FAQ
When is a task too large?
Tasks touching 8+ files, requiring 2+ hours of focused work, with 4+ acceptance criteria, or containing 'and' in the title should be broken down further. Target S and M sizes (1-5 files).
How do I know the right task order?
Build bottom-up along dependency graph: database schema before API models, API models before endpoints, endpoints before UI. Within same level, place high-risk tasks early and finish phases with checkpoints.
What's the difference between horizontal and vertical slicing?
Horizontal (bad): build all database, then all API, then all UI. Vertical (good): build one complete feature path at a time (user registration: schema + API + UI together), leaving system working after each task.
Is Planning And Task Breakdown safe to install?
skills.sh reports 3 of 3 security scanners passed. Review the Security Audits panel on this page before installing in production.