.claude/skills/task-planning/SKILL.md
Plan and break down complex tasks into actionable steps. Use when organizing projects, creating sprint plans, estimating work, prioritizing backlogs, or structuring multi-step implementations. Covers task decomposition, dependency mapping, risk identification, and progress tracking.
npx skillsauth add wallacedobbs428/thecalltaker task-planningInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Break complex work into clear, ordered, actionable steps.
Before breaking down tasks, write a single sentence:
"When this is done, [specific measurable outcome]."
Example: "When this is done, cold leads receive a 5-step automated follow-up sequence over 7 days."
List every piece needed:
- [ ] Data: What inputs/state files needed?
- [ ] Logic: What decisions/scoring/routing?
- [ ] Integrations: What APIs/services?
- [ ] Output: What gets sent/saved/displayed?
- [ ] Config: What settings/limits?
- [ ] Monitoring: How do we know it's working?
[Independent tasks — can be done in parallel]
├── Task A (no dependencies)
├── Task B (no dependencies)
└── Task C (no dependencies)
[Dependent tasks — must follow order]
├── Task D (depends on A)
├── Task E (depends on A + B)
└── Task F (depends on D + E)
[Final tasks — after everything else]
├── Testing
├── Documentation
└── Deployment
## Task: [Name]
**Goal:** [One sentence outcome]
**Priority:** P0/P1/P2/P3
**Estimated effort:** Small (< 2hr) | Medium (2-8hr) | Large (1-3 days)
### Subtasks
- [ ] [Specific actionable step]
- [ ] [Specific actionable step]
- [ ] [Specific actionable step]
### Dependencies
- Requires: [What must be done first]
- Blocks: [What can't start until this is done]
### Acceptance Criteria
- [ ] [Testable condition that proves it works]
- [ ] [Another testable condition]
### Risks
- [What could go wrong and how to mitigate]
URGENT NOT URGENT
┌─────────────────┬─────────────────┐
IMPORTANT │ DO FIRST │ SCHEDULE │
│ Revenue-blocking│ Strategic growth │
│ Customer-facing │ Technical debt │
│ bugs │ New features │
├─────────────────┼─────────────────┤
NOT │ DELEGATE │ ELIMINATE │
IMPORTANT │ Nice-to-haves │ Vanity metrics │
│ Style tweaks │ Over-engineering │
│ Internal tools │ Unused features │
└─────────────────┴─────────────────┘
For each feature, score 1-10:
Score = (I + C + E) / 3. Work on highest scores first.
## Sprint: [Date Range]
### Sprint Goal
[One sentence: what's the most important outcome this sprint?]
### Committed Work
| Task | Owner | Priority | Estimate | Status |
|------|-------|----------|----------|--------|
| [Task 1] | [Name] | P0 | Small | To Do |
| [Task 2] | [Name] | P1 | Medium | To Do |
| [Task 3] | [Name] | P1 | Small | To Do |
### Stretch Goals (if time permits)
- [ ] [Nice-to-have 1]
- [ ] [Nice-to-have 2]
### Blockers
- [Known blocker and plan to resolve]
### Done Definition
- Code committed and pushed
- Tests pass
- Deployed (or deployment instructions written)
- Documentation updated
For each major task, evaluate:
| Risk | Likelihood | Impact | Mitigation | |------|-----------|--------|------------| | API rate limiting | High | Medium | Implement backoff, batch requests | | State file corruption | Low | High | Atomic writes, backup on each write | | External service outage | Medium | High | Graceful degradation, retry logic | | Scope creep | High | Medium | Strict acceptance criteria, say no |
**Yesterday:** [What was completed]
**Today:** [What's planned]
**Blockers:** [What's stuck]
Backlog → To Do → In Progress → In Review → Done
↓
Blocked → [Resolve blocker] → In Progress
documentation
Agentic memory system for writers - track characters, relationships, scenes, and themes
tools
Automate repetitive development tasks and workflows. Use when creating build scripts, automating deployments, or setting up development workflows. Handles npm scripts, Makefile, GitHub Actions workflows, and task automation.
development
Review UI code for Web Interface Guidelines compliance. Use when asked to "review my UI", "check accessibility", "audit design", "review UX", or "check my site against best practices". Fetches latest Vercel guidelines and checks files against all rules.
development
Implement web accessibility (a11y) standards following WCAG 2.1 guidelines. Use when building accessible UIs, fixing accessibility issues, or ensuring compliance with disability standards. Handles ARIA attributes, keyboard navigation, screen readers, semantic HTML, and accessibility testing.