athola/task-planning
Generates phased, dependency-ordered implementation tasks from specifications. Use after spec is complete and before starting implementation.
npx skills add https://github.com/athola/claude-night-market --skill task-planning
Transforms specifications and implementation plans into concrete, dependency-ordered tasks. Creates phased breakdowns that guide systematic implementation.
Tasks follow a 5-phase structure from setup through polish:
For detailed phase definitions, selection guidelines, and anti-patterns, see modules/phase-structure.md.
Each task includes:
Dependencies define execution order and identify parallelization opportunities:
Nonconflicting Criteria for Parallel Execution:
Mark tasks with [P] ONLY if they pass ALL criteria above.
For fan-out/fan-in patterns, task ID conventions, and validation rules, see modules/dependency-patterns.md.
## Phase 2: Core Implementation
### TASK-007 - Implement user authentication service [P]
**Dependencies**: TASK-003, TASK-004
**Files**: src/services/auth.ts, src/types/user.ts
**Criteria**: All auth tests pass, tokens are valid JWT
Verification: Run pytest -v to verify tests pass.
spec-writing: Creating source specificationsspeckit-orchestrator: Workflow coordinationTASK-NNN format and includesDescription, Phase (0-4), Dependencies list, Parallel marker
([P] or sequential), Files, and Criteria fields
[P] pass all 5 nonconflicting criteria: no fileoverlap, no shared state, dependencies satisfied, no merge
conflicts possible, no output dependency on each other
at least one task; unmapped requirements are flagged
one with a higher task number within the same phase
Take athola/task-planning from the repository into ~/.claude/skills for personal
use, or into .claude/skills inside a project.
The agent identifies a skill by the name field in its header. Two skills with the
same name cannot sit side by side — one of them will be ignored.