sdd-tasks — TDD-based task breakdown generation sdd-tasks, sdd-mcp, community, TDD-based task breakdown generation, ide skills, sdd-tasks install, sdd-tasks workflow integration, sdd-tasks design phase approval, Claude Code, Cursor, Windsurf

v1.0.0
GitHub

About this Skill

Perfect for Development Agents needing automated TDD-based task breakdowns from approved design documents. sdd-tasks is a skill that generates comprehensive TDD-based task breakdowns, translating approved designs into implementable work items using the /sdd-design and sdd-approve design MCP tools.

Features

Generates task breakdowns using the /sdd-design command
Verifies design prerequisites with the sdd-status MCP tool
Reviews design documents in .spec/specs/{feature}/design.md format
Creates implementable work items based on approved designs
Utilizes the sdd-approve design MCP tool for design phase approval
Integrates with MCP tools for seamless workflow

# Core Topics

yi-john-huang yi-john-huang
[0]
[0]
Updated: 3/8/2026

Agent Capability Analysis

The sdd-tasks skill by yi-john-huang is an open-source community AI agent skill for Claude Code and other IDE workflows, helping agents execute tasks with better context, repeatability, and domain-specific guidance. Optimized for TDD-based task breakdown generation, sdd-tasks install, sdd-tasks workflow integration.

Ideal Agent Persona

Perfect for Development Agents needing automated TDD-based task breakdowns from approved design documents.

Core Value

Empowers agents to generate comprehensive task breakdowns using TDD principles, streamlining the development process by creating implementable work items from approved designs in .spec/specs/{feature}/design.md format, leveraging the sdd-design and sdd-approve design tools.

Capabilities Granted for sdd-tasks

Automating task generation from approved design documents
Streamlining development workflows with TDD-based task breakdowns
Creating implementable work items for project managers and developers

! Prerequisites & Limits

  • Requires approved design documents generated using /sdd-design
  • Design phase must be approved using sdd-approve design MCP tool
  • Dependent on sdd-status MCP tool for prerequisite verification
Labs Demo

Browser Sandbox Environment

⚡️ Ready to unleash?

Experience this Agent in a zero-setup browser environment powered by WebContainers. No installation required.

Boot Container Sandbox

sdd-tasks

Install sdd-tasks, an AI agent skill for AI agent workflows and automation. Works with Claude Code, Cursor, and Windsurf with one-command setup.

SKILL.md
Readonly

SDD Task Breakdown Generation

Generate comprehensive TDD-based task breakdowns that translate approved designs into implementable work items.

Prerequisites

Before generating tasks:

  1. Design must be generated using /sdd-design
  2. Design phase should be approved (use sdd-approve design MCP tool)
  3. Review the design document in .spec/specs/{feature}/design.md

Workflow

Step 1: Verify Prerequisites

Use sdd-status MCP tool to verify:

  • design.generated: true
  • design.approved: true (recommended before tasks)

Step 2: Review Design

  1. Read .spec/specs/{feature}/design.md
  2. Identify all components to implement
  3. Note interfaces and data models
  4. Understand dependencies between components

Step 3: Apply TDD Workflow

For each task, follow the Red-Green-Refactor cycle:

┌─────────────────────────────────────────────────────────────┐
│                    TDD CYCLE                                │
├─────────────────────────────────────────────────────────────┤
│                                                             │
│   1. RED    ──────>  Write failing test first              │
│                      (Test describes expected behavior)     │
│                                                             │
│   2. GREEN  ──────>  Write minimal code to pass            │
│                      (Just enough to make test green)       │
│                                                             │
│   3. REFACTOR ────>  Clean up, maintain tests passing      │
│                      (Improve design without breaking)      │
│                                                             │
│   ─────────────────────────────────────────────────────    │
│                      REPEAT                                 │
└─────────────────────────────────────────────────────────────┘

Step 4: Apply Test Pyramid

Structure tests following the 70/20/10 ratio:

                    ╱╲
                   ╱  ╲
                  ╱ E2E╲         10% - Critical user journeys
                 ╱──────╲
                ╱        ╲
               ╱Integration╲    20% - Component interactions
              ╱────────────╲
             ╱              ╲
            ╱   Unit Tests   ╲  70% - Individual functions
           ╱──────────────────╲
LevelCoverageScopeSpeed
Unit70%Single function/classFast (ms)
Integration20%Component interactionsMedium (s)
E2E10%Full user journeysSlow (min)

Step 5: Generate Task Breakdown

Structure tasks hierarchically:

markdown
1# Tasks: {Feature Name} 2 3## Overview 4{Summary of implementation approach} 5 6## Task Groups 7 8### 1. {Component/Layer Name} 9 10#### 1.1 {Task Name} 11**Type:** Unit | Integration | E2E 12**Estimated Effort:** S | M | L | XL 13**Dependencies:** {Task IDs} 14 15**TDD Steps:** 161. RED: Write test for {specific behavior} 17 ```typescript 18 describe('{Component}', () => { 19 it('should {expected behavior}', () => { 20 // Arrange 21 // Act 22 // Assert 23 }); 24 });
  1. GREEN: Implement {minimal solution}
  2. REFACTOR: {Specific improvements}

Acceptance Criteria:

  • Test passes
  • Code coverage >= 80%
  • No lint errors

1.2 {Next Task}

...

2. {Next Component}

...

Implementation Order

[1.1] ──> [1.2] ──> [2.1]
              │
              └──> [1.3] ──> [2.2]

Definition of Done

  • All tests pass
  • Code coverage >= 80%
  • No lint/type errors
  • Code reviewed
  • Documentation updated

### Step 6: Task Sizing Guidelines

| Size | Description | Test Count | Time |
|------|-------------|------------|------|
| **S** | Single function, 1-2 tests | 1-2 | < 1 hour |
| **M** | Multiple functions, 3-5 tests | 3-5 | 1-4 hours |
| **L** | Component with integration | 5-10 | 4-8 hours |
| **XL** | Complex component, many edge cases | 10+ | 1-2 days |

### Step 7: Test-First Task Template

For each implementation task:

```markdown
#### Task {X.Y}: {Task Name}

**Component:** {ComponentName}
**Type:** Unit Test → Implementation

**Test Scenarios:**
1. Happy path: {Expected behavior when inputs are valid}
2. Edge case: {Boundary conditions}
3. Error case: {Invalid inputs, failures}

**Test Code (RED):**
```typescript
import { {Component} } from './{component}';

describe('{Component}', () => {
  describe('{method}', () => {
    it('should {happy path behavior}', async () => {
      // Arrange
      const input = { /* valid input */ };

      // Act
      const result = await component.method(input);

      // Assert
      expect(result).toEqual({ /* expected */ });
    });

    it('should throw when {error condition}', async () => {
      // Arrange
      const invalidInput = { /* invalid */ };

      // Act & Assert
      await expect(component.method(invalidInput))
        .rejects.toThrow('{ErrorType}');
    });
  });
});

Implementation (GREEN): {Brief description of minimal implementation}

Refactor:

  • Extract {helper function} if needed
  • Apply {specific pattern}

### Step 8: Save and Execute

1. Save tasks to `.spec/specs/{feature}/tasks.md`
2. Use `sdd-approve tasks` MCP tool to mark phase complete
3. Use `sdd-spec-impl` MCP tool to execute tasks with TDD

## MCP Tool Integration

| Tool | When to Use |
|------|-------------|
| `sdd-status` | Verify design phase complete |
| `sdd-approve` | Mark tasks phase as approved |
| `sdd-spec-impl` | Execute tasks using TDD methodology |
| `sdd-quality-check` | Validate code quality during implementation |

## Quality Checklist

- [ ] All design components have corresponding tasks
- [ ] Tasks follow TDD (test first)
- [ ] Test pyramid ratio maintained (70/20/10)
- [ ] Dependencies between tasks are clear
- [ ] Each task has specific acceptance criteria
- [ ] Tasks are sized appropriately (avoid XL when possible)
- [ ] Implementation order respects dependencies
- [ ] Definition of Done is clear

## Steering Document References

Apply these steering documents during task breakdown:

| Document | Purpose | Key Application |
|----------|---------|-----------------|
| `.spec/steering/tdd-guideline.md` | Test-Driven Development | Structure all tasks using Red-Green-Refactor cycle, follow test pyramid (70/20/10) |

**Key TDD Principles for Tasks:**
1. **RED**: Every task starts with writing a failing test
2. **GREEN**: Implement minimal code to pass the test
3. **REFACTOR**: Clean up while keeping tests green
4. **Test Pyramid**: 70% unit, 20% integration, 10% E2E

## Common Anti-Patterns to Avoid

| Anti-Pattern | Problem | Solution |
|--------------|---------|----------|
| **Test After** | Missing edge cases | Always write test first |
| **Ice Cream Cone** | Too many E2E tests | Follow pyramid (70/20/10) |
| **Big Tasks** | Hard to track progress | Break into S/M sizes |
| **No Dependencies** | Blocked work | Map dependencies explicitly |
| **Vague Criteria** | Unclear completion | Specific, measurable criteria |

FAQ & Installation Steps

These questions and steps mirror the structured data on this page for better search understanding.

? Frequently Asked Questions

What is sdd-tasks?

Perfect for Development Agents needing automated TDD-based task breakdowns from approved design documents. sdd-tasks is a skill that generates comprehensive TDD-based task breakdowns, translating approved designs into implementable work items using the /sdd-design and sdd-approve design MCP tools.

How do I install sdd-tasks?

Run the command: npx killer-skills add yi-john-huang/sdd-mcp/sdd-tasks. It works with Cursor, Windsurf, VS Code, Claude Code, and 19+ other IDEs.

What are the use cases for sdd-tasks?

Key use cases include: Automating task generation from approved design documents, Streamlining development workflows with TDD-based task breakdowns, Creating implementable work items for project managers and developers.

Which IDEs are compatible with sdd-tasks?

This skill is compatible with Cursor, Windsurf, VS Code, Trae, Claude Code, OpenClaw, Aider, Codex, OpenCode, Goose, Cline, Roo Code, Kiro, Augment Code, Continue, GitHub Copilot, Sourcegraph Cody, and Amazon Q Developer. Use the Killer-Skills CLI for universal one-command installation.

Are there any limitations for sdd-tasks?

Requires approved design documents generated using /sdd-design. Design phase must be approved using sdd-approve design MCP tool. Dependent on sdd-status MCP tool for prerequisite verification.

How To Install

  1. 1. Open your terminal

    Open the terminal or command line in your project directory.

  2. 2. Run the install command

    Run: npx killer-skills add yi-john-huang/sdd-mcp/sdd-tasks. The CLI will automatically detect your IDE or AI agent and configure the skill.

  3. 3. Start using the skill

    The skill is now active. Your AI agent can use sdd-tasks immediately in the current project.

Related Skills

Looking for an alternative to sdd-tasks or another community skill for your workflow? Explore these related open-source skills.

View All

widget-generator

Logo of f
f

f.k.a. Awesome ChatGPT Prompts. Share, discover, and collect prompts from the community. Free and open source — self-host for your organization with complete privacy.

149.6k
0
AI

flags

Logo of vercel
vercel

flags is a Next.js feature management skill that enables developers to efficiently add or modify framework feature flags, streamlining React application development.

138.4k
0
Browser

zustand

Logo of lobehub
lobehub

The ultimate space for work and life — to find, build, and collaborate with agent teammates that grow with you. We are taking agent harness to the next level — enabling multi-agent collaboration, effortless agent team design, and introducing agents as the unit of work interaction.

72.8k
0
AI

data-fetching

Logo of lobehub
lobehub

The ultimate space for work and life — to find, build, and collaborate with agent teammates that grow with you. We are taking agent harness to the next level — enabling multi-agent collaboration, effortless agent team design, and introducing agents as the unit of work interaction.

72.8k
0
AI