From spec-kit
Generate dependency-ordered tasks.md from design artifacts like plan.md, spec.md in the given feature directory or plan.md path.
How this command is triggered — by the user, by Claude, or both
Slash command
/spec-kit:speckit-tasks Path to plan.md or feature directoryThe summary Claude sees in its command listing — used to decide when to auto-load this command
# Speckit Tasks Before proceeding, load the `speckit-orchestrator` skill for workflow coordination. Consider loading complementary skills like `superpowers:executing-plans` and `superpowers:systematic-debugging` for enhanced task generation. ## When To Use Use this command when you need to: - Converting spec/plan into actionable task list - Creating dependency-ordered implementation roadmap ## When NOT To Use - Project doesn't follow spec-driven development - Quick fixes that don't need formal specification ## User Input You **MUST** consider the user input before proceeding (if no...
Before proceeding, load the speckit-orchestrator skill for workflow coordination. Consider loading complementary skills like superpowers:executing-plans and superpowers:systematic-debugging for enhanced task generation.
Use this command when you need to:
$ARGUMENTS
You MUST consider the user input before proceeding (if not empty).
Setup: Run .specify/scripts/bash/check-prerequisites.sh --json from repo root and parse FEATURE_DIR and AVAILABLE_DOCS list. All paths must be absolute. For single quotes in args like "I'm Groot", use escape syntax: e.g 'I'''m Groot' (or double-quote if possible: "I'm Groot").
Load design documents: Read from FEATURE_DIR:
Execute task generation workflow:
Generate tasks.md: Use .specify.specify/templates/tasks-template.md as structure, fill with:
Report: Output path to generated tasks.md and summary:
Context for task generation: $ARGUMENTS
The tasks.md should be immediately executable - each task must be specific enough that an LLM can complete it without additional context.
CRITICAL: Tasks MUST be organized by user story to enable independent implementation and testing.
Tests are OPTIONAL: Only generate test tasks if explicitly requested in the feature specification or if user requests TDD approach.
Every task MUST strictly follow this format:
- [ ] [TaskID] [P?] [Story?] Description with file path
Format Components:
- [ ] (markdown checkbox)leyline:risk-classification)
[R:GREEN], [R:YELLOW], [R:RED], [R:CRITICAL]Examples:
- [ ] T001 Create project structure per implementation plan- [ ] T005 [P] Implement authentication middleware in src/middleware/auth.py- [ ] T012 [P] [US1] Create User model in src/models/user.py- [ ] T012 [P] [US1] [R:YELLOW] Create User model in src/models/user.py- [ ] T014 [US1] Implement UserService in src/services/user_service.py- [ ] T015 [US2] [R:RED] Add user migration in migrations/002_add_users.py- [ ] Create User model (missing ID and Story label)T001 [US1] Create model (missing checkbox)- [ ] [US1] Create User model (missing Task ID)- [ ] T001 [US1] Create model (missing file path)From User Stories (spec.md) - PRIMARY ORGANIZATION:
From Contracts:
From Data Model:
From Setup/Infrastructure:
npx claudepluginhub athola/claude-night-market --plugin spec-kit/devkit.spec-to-tasksConverts functional specs into atomic executable tasks with acceptance criteria, dependencies, and implementation commands. Outputs tasks.md list plus individual TASK-XXX.md files. Supports --lang=java|spring|typescript|nestjs|react|python|general.
/tasks-specGenerates actionable, dependency-ordered tasks.md for a feature from design artifacts (plan.md, data-model.md, contracts), with parallel markers [P] and execution guidance.
/create-tasksGenerates actionable implementation tasks from product specs, architecture, and design documents in Groundwork projects.
/tasksGenerates a dependency-ordered task breakdown from plan.md, cross-validates every requirement against the product spec, and writes tasks.md for user approval.
/tasksOrchestrates two-agent workflow to generate task mappings and detailed tasks from feature specs, with Devil's Advocate validation and report outputs.