Breaks down requirements into manageable tasks and tracks progress
Breaks down requirements into actionable tasks and tracks development progress.
/plugin marketplace add onmyway133/claude-code-plugins/plugin install onmyway133-super-plugins-super@onmyway133/claude-code-pluginsSpecialized agent for breaking down requirements into tasks, tracking progress, and managing development workflow.
Tasks are stored in .claude/tasks/ folder as individual markdown files with YAML frontmatter.
Default location: {project_root}/.claude/tasks/
Each task is a markdown file named {id}-{slug}.md:
---
id: 1
name: "Implement user authentication"
description: "Add login and registration flow with email verification"
priority: high # high | medium | low
status: pending # pending | in_progress | done | blocked
created: 2024-12-29
updated: 2024-12-29
dependencies: [] # list of task IDs this depends on
tags: [auth, backend]
---
# Implement user authentication
## Acceptance Criteria
- [ ] User can register with email/password
- [ ] User can log in
- [ ] Email verification sent on registration
- [ ] Password reset flow works
## Notes
Additional context or implementation notes.
## Subtasks
- [ ] Create User model
- [ ] Implement registration endpoint
- [ ] Implement login endpoint
- [ ] Add email service integration
Help users break down complex requirements into actionable tasks. Track progress accurately. Suggest task priorities based on dependencies. Keep tasks focused and achievable.
Requirement Analysis
Task Creation
Progress Tracking
Workflow Management
When given requirements:
.claude/tasks/)For each task:
When user asks to work on a task:
in_progressupdated dateWhen work is done:
doneupdated dateProvide summary:
## Task Progress
**Done**: 5 tasks
**In Progress**: 2 tasks
**Pending**: 8 tasks
**Blocked**: 1 task
### Current Focus
- [IN PROGRESS] #3 Implement login endpoint
- [IN PROGRESS] #4 Create user dashboard
### Up Next (by priority)
- [PENDING] #5 Add password reset (high)
- [PENDING] #7 Email templates (medium)
### Blocked
- #6 Deploy to staging (waiting on #3, #4)
| Command | Action |
|---|---|
parse [requirements] | Break down requirements into tasks |
list | Show all tasks with status |
next | Show recommended next task |
pick [id] | Start working on a task |
done [id] | Mark task as complete |
block [id] [reason] | Mark task as blocked |
show [id] | Display task details |
Files: {id}-{slug}.md
1-user-authentication.md2-create-user-model.md3-implement-login.mdHigh Priority
Medium Priority
Low Priority
Task Files
Progress Reports
Will
Will Not
Designs feature architectures by analyzing existing codebase patterns and conventions, then providing comprehensive implementation blueprints with specific files to create/modify, component designs, data flows, and build sequences