speckit-tasks

Generates dependency-ordered tasks.md checklists from spec-kit design artifacts.

Updated Dec 12, 2024
One-click install
npx skills add https://github.com/kipariss1/czech_out_auto_bot --skill speckit-tasks-kipariss1
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: speckit-tasks
Source: https://github.com/kipariss1/czech_out_auto_bot/tree/main/.claude/skills/speckit-tasks
Command: npx skills add https://github.com/kipariss1/czech_out_auto_bot --skill speckit-tasks-kipariss1

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Turning a feature specification and implementation plan into an actionable, ordered task list is tedious and error-prone. This Skill automates that step by reading your spec-kit design documents and producing a structured tasks.md where every task is specific enough to execute immediately. ## Core Features & Use Cases - Story-Organized Task Generation: Reads spec.md user stories with priorities and creates one phase per story, so each increment is independently testable. - Strict Checklist Format: Every task follows a validated format with checkbox, sequential task ID, parallelization marker, story label, and exact file path. - Dependency & Parallelism Mapping: Produces a dependency graph of story completion order plus parallel execution examples per story. - Extension Hooks: Supports optional and mandatory pre/post hooks declared in .specify/extensions.yml. - Use Case: After running spec-kit plan and specify commands for a new feature, invoke this Skill to generate a tasks.md with setup, foundational, per-story, and polish phases ready for incremental MVP-first delivery. ## Quick Start Ask the assistant to generate the tasks.md for the current feature based on the spec and plan in the .specify directory.

Frequently Asked Questions about speckit-tasks

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I generate a tasks.md from a spec-kit specification?▼

Run the speckit-tasks skill in a project with a .specify directory. It reads spec.md and plan.md from the feature directory, then generates a tasks.md organized by user story with sequential task IDs and file paths.

What documents does spec-kit task generation require?▼

It requires plan.md for tech stack and structure, and spec.md for prioritized user stories. Optional inputs include data-model.md, contracts/, research.md, quickstart.md, and a constitution.md for project principles.

Does speckit-tasks work without a .specify directory?▼

No. The skill requires a spec-kit project structure with a .specify directory, since it runs .specify/scripts/bash/setup-tasks.sh to locate the feature directory and tasks template.

Are test tasks always included in the generated tasks.md?▼

No. Test tasks are optional and only generated when explicitly requested in the feature specification or when the user asks for a TDD approach. Otherwise phases contain only implementation tasks.

What format must each generated task follow?▼

Each task must be a markdown checkbox with a sequential ID like T001, an optional [P] parallel marker, a story label like [US1] for story-phase tasks, and a description ending with an exact file path.