task-breakdown-phase

task-breakdown-phase is a skill for Claude Code from marcusgoll/Spec-Flow. It costs 31 tokens per session (5,893 once invoked), scanned A, original, MIT.

A procedure for breaking a software plan into a sequenced task list. It defines task size, dependencies, acceptance checks, and a test-first workflow called TDD, where tests are written before implementation.

In plain words
What is it for?
It helps create tasks for databases, business logic, APIs, user interfaces, integration tests, and other project components.
Why use it?
It turns a broad design into smaller pieces that are easier to estimate, build, and verify.

Skill for Claude Code

Written for Claude Code: installed under .claude/. Also seen: reads .claude/ paths.

Good fit It helps create tasks for databases, business logic, APIs, user interfaces, integration tests, and other project components.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/marcusgoll/spec-flow/task-breakdown-phase
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add marcusgoll/Spec-Flow --skill task-breakdown-phase
Clone the repo
git clone --depth 1 https://github.com/marcusgoll/Spec-Flow

Made for: Claude Code.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for task-breakdown-phase

README.md
[![agentmods](https://agentmods.dev/badge/skills/marcusgoll/spec-flow/task-breakdown-phase/github.svg)](https://agentmods.dev/skills/marcusgoll/spec-flow/task-breakdown-phase)
Your own site
<a href="https://agentmods.dev/skills/marcusgoll/spec-flow/task-breakdown-phase"><img src="https://agentmods.dev/badge/skills/marcusgoll/spec-flow/task-breakdown-phase/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for task-breakdown-phase

Your own site · 80×15
<a href="https://agentmods.dev/skills/marcusgoll/spec-flow/task-breakdown-phase"><img src="https://agentmods.dev/badge/skills/marcusgoll/spec-flow/task-breakdown-phase.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 31 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 5,893 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00031 $0.05893
Opus 5 $0.00015 $0.02946
Sonnet 5 $0.00006 $0.01179
Haiku 4.5 $0.00003 $0.00589

Measured 6d ago against content hash 1471d48d5c94, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-09, from the pricing page.

Security

Grade A, and why

task-breakdown-phase scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 6d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

.claude/skills/task-breakdown-phase/SKILL.md · 763 lines

How it starts

The opening of the file, as written. The whole thing — 763 lines — stays where its author put it; the contents beside it link to each section on GitHub.

This skill orchestrates the /tasks phase, producing tasks.md with:

  • Right-sized tasks (0.5-1 day each, 4-8 hours)
  • TDD workflow (test → implement → refactor triplet for all components)
  • Clear acceptance criteria (2-4 testable checkboxes per task)
  • Explicit dependencies (task numbers, critical path, parallel opportunities)
  • Implementation hints (reuse patterns, file paths, references to plan.md)

Inputs: plan.md (architecture, components, reuse strategy) Outputs: tasks.md (20-30 tasks sequenced by dependencies) Expected duration: 30-60 minutes

<quick_start> Execute /tasks workflow in 12 steps:

  1. Parse plan.md - Extract architecture components, reuse patterns, data models, API endpoints, UI components
  2. Generate foundation tasks - Database migrations, model definitions, configuration setup (3-5 tasks)
  3. Generate business logic tasks - TDD triplet (test → implement → refactor) for each service/utility (2-4 tasks per component)
  4. Generate API tasks - TDD for controllers/routes (test → implement per endpoint)
  5. Generate UI tasks - TDD for components (test → implement per screen/component) if HAS_UI
  6. Generate integration tasks - E2E tests, smoke tests, integration validation (2-3 tasks)
  7. Map dependencies - Build dependency graph, identify critical path, mark parallel opportunities
  8. Size tasks - Validate 0.5-1 day per task (split if >1.5 days, combine if <0.5 day)
  9. Write acceptance criteria - 2-4 testable checkboxes per task using AC templates
  10. Add implementation notes - Reuse hints, file paths, plan.md references for complex tasks
  11. Generate tasks.md - Render with task summary (total, duration, critical path, distribution)
  12. Validate and commit - Check 20-30 tasks total, all AC clear, TDD followed, dependencies explicit

Key principle: Every task is test-driven with measurable acceptance criteria. </quick_start>

If prerequisites not met, return to /plan phase.

Extract all implementation components from plan.md:

Architecture components to extract:

  • Data layer: models, schemas, migrations
  • Business logic: services, utilities, helpers
  • API layer: controllers, routes, middleware
  • UI layer: components, screens, forms (if HAS_UI)
  • Testing: integration points, E2E scenarios

Reuse patterns to identify:

  • Existing services/utilities referenced in plan.md
  • Shared components/libraries to leverage
  • Established patterns to follow (e.g., BaseService, repository pattern)

Quality check: All components from plan.md extracted, reuse opportunities documented.

See reference.md for component extraction examples.

Create infrastructure setup tasks (first to execute, all others depend on these).

Foundation task categories:

  1. Database migration task (create tables, indexes, constraints)
  2. Model definition tasks (data models, schemas, validation)
  3. Configuration tasks (environment setup, dependency installation)

Example foundation task:

Task 1: Create database migration for student progress tables

Complexity: Small (2-4 hours)

Steps:
1. Create migration file (alembic revision --autogenerate)
2. Define students table (id, name, grade_level, created_at)
3. Define lessons table (id, student_id, subject, duration_mins)
4. Add indexes (student_id, created_at)
5. Add foreign key constraints

Acceptance criteria:
- [ ] Migration runs successfully on clean database
- [ ] Rollback works without errors
- [ ] Indexes improve query performance (measured)
- [ ] Foreign keys enforce referential integrity

Dependencies: None (foundation task)
Blocks: Task 4 (model definitions)

Read the full file on GitHub · 763 lines

Files

What ships with it

2 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 6d ago First seen · 763 lines · 31 tokens per session scan A 1471d48d5c94

Subscribe to this mod's changes

task-breakdown-phase is a skill published in the GitHub repository marcusgoll/Spec-Flow (92 stars, last pushed 4mo ago), licensed MIT. It adds 31 tokens to every session and 5,893 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-03.

Related

Other skills, from other repositories

forward-derivation

Derive BDD scenarios and TDD test skeletons from approved SDD specifications. ATDD acceptance test tables are optional output for specialized needs. Use when: spec is approved, starting BDD/TDD implementation, generating test structures. Keywords: forward derivation, spec to test, BDD generation, TDD skeleton, test…

ValorVie/custom-skills · 91 tokens

bdd-assistant

A guide to Behavior-Driven Development, or BDD, a way to describe software behavior with examples in plain language before building it. It uses Given-When-Then scenarios and Gherkin, a structured format for those examples.

ValorVie/custom-skills · 76 tokens

methodology-system

Manage and guide developers through active development methodology workflows. Use when: TDD, BDD, SDD, ATDD, or custom methodology workflows are needed. Keywords: methodology, workflow, TDD, BDD, SDD, ATDD, phase, checkpoint, development process.

ValorVie/custom-skills · 61 tokens

logging-guide

A guide for applying a development process such as TDD, BDD, or SDD. TDD means writing tests before the code; BDD describes expected behavior; SDD plans changes in specifications first.

ValorVie/custom-skills · 55 tokens

tdd

Test-driven development. Use when the user wants to build features or fix bugs test-first, mentions "red-green-refactor", or wants integration tests.

ValorVie/custom-skills · 33 tokens

tdd

Test-driven development. Use when the user wants to build features or fix bugs test-first, mentions "red-green-refactor", or wants integration tests.

mhrsdev/AI-Agent-Skills-Library · 33 tokens