cmd-speckit-tasks
Original:🇺🇸 English
Translated
Generate a phase-based task breakdown in tasks.md from spec.md and plan.md
10installs
Sourcegsmlg-dev/code-agent
Added on
NPX Install
npx skill4agent add gsmlg-dev/code-agent cmd-speckit-tasksTags
Translated version includes tags in frontmatterSKILL.md Content
View Translation Comparison →/speckit.tasks
Agent skill wrapper for the Claude command .
/speckit.tasksWhen the original command text references , , or named arguments, map them from the user's current request.
{{INPUT}}$1Command Instructions
Generate a dependency-ordered with phase-based tasks derived from the feature specification and plan.
tasks.mdSteps
-
Locate artifacts:
- If input names a feature or directory, use it.
- Otherwise check and ask if multiple features exist.
.specify/specs/ - Load: (user stories + priorities),
spec.md(tech stack, phases). Optionally:plan.md,data-model.md,contracts/.research.md - Load .
.specify/memory/constitution.md - Set to the feature directory.
FEATURE_DIR
-
Extract user stories and priorities: From, extract each user story. Assign priority:
spec.md- P1 = critical path (required for MVP)
- P2 = important (needed for completion)
- P3 = nice-to-have (can defer)
-
Generate:
FEATURE_DIR/tasks.mdmarkdown# Tasks: <Feature Name> ## Phase 1: Setup Shared infrastructure and scaffolding required by all subsequent phases. - [ ] [T001] [P] <task description> — <file path if applicable> - [ ] [T002] <task description> ## Phase 2: Foundation Blocking prerequisites that multiple user stories depend on. - [ ] [T010] [P] <task description> ## Phase 3: <User Story 1 Name> [US1] Implement [US1]: "As a [role], I want to [action]..." - [ ] [T020] [P] [US1] Write unit tests for <component> - [ ] [T021] [US1] Implement <component> core logic ## Phase N: Polish & Cross-Cutting Concerns - [ ] [TN00] [P] Add error handling across all endpoints - [ ] [TN01] Write integration tests for full workflow - [ ] [TN02] Update documentationTask format rules:- marks a task as parallelizable (no blocking dependencies within the phase)
[P] - traces the task to user story n (Phase 3+ only)
[USn] - Task IDs increment sequentially (T001, T002, ...)
- Include file paths in task description when the task targets a specific file
-
Report: Task counts by phase, total parallelizable task count, which phases constitute the MVP scope.
Next step: Run to validate spec quality, or to begin implementation.
/speckit.checklist/speckit.implement{{INPUT}}