task-planning

Generate phased, dependency-ordered implementation tasks from specifications and plans.

326|35|Updated Nov 23, 2025
One-click install
npx skills add https://github.com/athola/claude-night-market --skill task-planning-athola
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: task-planning
Source: https://github.com/athola/claude-night-market/tree/main/plugins/spec-kit/skills/task-planning
Command: npx skills add https://github.com/athola/claude-night-market --skill task-planning-athola

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill requires spec-kit:shared, superpowers:writing-plans, superpowers:executing-plans.

What problem does it solve?

Generate dependency-ordered implementation tasks from specifications and plans.

Core Features & Use Cases

  • Phased task breakdown with Phase 0-4 structure
  • Dependency-aware sequencing and parallelization hints
  • Clear task formatting for review and execution

Quick Start

Produces tasks.md with phased, dependency-ordered implementation tasks.

Frequently Asked Questions about task-planning

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

FAQPage Schema
How do I break down a specification into phased, dependency-ordered tasks?

Dependency-ordered task breakdown converts specifications into phased implementation tasks with explicit dependencies, unique IDs, and affected files. This approach identifies parallel execution opportunities and organizes work across Phase 0-4 structure with sequential, parallel, fan-out, and fan-in patterns to enable structured execution.

What's the difference between sequential and parallel task dependencies?

Sequential dependencies require one task to complete before the next starts, while parallel dependencies allow multiple tasks to execute simultaneously. Phased task planning identifies both patterns to minimize overall execution time and clarify which work can run concurrently versus which must wait on upstream completion.

Can I use task planning to identify which files will be affected by implementation?

Yes. Dependency-ordered task generation includes affected files for each task, letting you trace which modules, components, or systems each phase impacts and predict ripple effects across your codebase before implementation begins.

How do I know when a task is complete?

Phased task breakdown includes explicit completion criteria for each task, defining the specific deliverables, test coverage, or review gates required to mark work done and move to dependent tasks without ambiguity.

What input do I need before generating implementation tasks?

You need a specification document and an implementation plan. Task planning applies these inputs to produce structured, phased tasks with dependencies, enabling you to move from high-level requirements to executable, ordered work items.