Multi-agent development workflow system for structured task execution. Use when working with tasks in .tasks/ directory, when user invokes /task, /explore, /research, /spec, /build, /review, or /refactor commands, or when Claude needs to understand the task orchestration system. Provides workflow state management, sub-agent coordination, and session persistence.
This skill inherits all available tools. When active, it can use any tool Claude has access to.
references/file-formats.mdreferences/slash-commands.mdreferences/sub-agents.mdA structured workflow system where Claude Code orchestrates sub-agents to execute development tasks with full state persistence across sessions.
User Input → /task → /explore → /research → /spec → /build → /review → /refactor → Done
Each stage persists state in .tasks/{task-name}/ enabling:
.tasks/
└── {task-name}/
├── status.md # Current phase, activity log
├── task.md # Requirements + clarifications Q&A
├── explore.md # Codebase analysis
├── research.md # Documentation, patterns, snippets
├── spec.md # Implementation plan with phases
├── review.md # Code review findings
└── refactor.md # Applied fixes
/task)/explore)/research)research sub-agent with GRANULAR queries/spec)spec sub-agent/build)/review)review sub-agent/refactor)refactor sub-agentClaude Code acts as orchestrator. Sub-agents:
Research agent pattern: Call multiple times with specific queries:
Agent 1: "Better Auth session configuration"
Agent 2: "Drizzle auth schema pattern"
Agent 3: "Next.js 15 middleware auth"
status.md format:
## Current Phase
- [x] Task Definition
- [x] Explore
- [ ] Research ← current
- [ ] Spec
- [ ] Build
- [ ] Review
- [ ] Refactor
## Activity Log
- [2025-01-15 10:30] Task initialized
- [2025-01-15 10:45] Explore complete
When resuming work:
.tasks/ for active tasksstatus.md to find current phasereferences/file-formats.md - Templates for each markdown filereferences/slash-commands.md - All slash commands for this workflowreferences/sub-agents.md - Descriptions for creating sub-agents via /agents