KS
Killer-Skills

sdd-tasks — how to use sdd-tasks how to use sdd-tasks, sdd-tasks setup guide, TDD-based task breakdown generation, sdd-tasks alternative, sdd-tasks vs MCP tools, sdd-tasks install, what is sdd-tasks, sdd-tasks workflow integration, sdd-tasks design phase approval

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/6/2026

Quality Score

Top 5%
42
Excellent
Based on code quality & docs
Installation
SYS Universal Install (Auto-Detect)
Cursor IDE Windsurf IDE VS Code IDE
> npx killer-skills add yi-john-huang/sdd-mcp/sdd-tasks

Agent Capability Analysis

The sdd-tasks MCP Server by yi-john-huang is an open-source Categories.community integration for Claude and other AI agents, enabling seamless task automation and capability expansion. Optimized for how to use sdd-tasks, sdd-tasks setup guide, TDD-based task breakdown generation.

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 MCP Server

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
Project
SKILL.md
7.6 KB
.cursorrules
1.2 KB
package.json
240 B
Ready
UTF-8

# Tags

[No tags]
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 |

Related Skills

Looking for an alternative to sdd-tasks or building a Categories.community AI Agent? Explore these related open-source MCP Servers.

View All

widget-generator

Logo of f
f

widget-generator is an open-source AI agent skill for creating widget plugins that are injected into prompt feeds on prompts.chat. It supports two rendering modes: standard prompt widgets using default PromptCard styling and custom render widgets built as full React components.

149.6k
0
Design

chat-sdk

Logo of lobehub
lobehub

chat-sdk is a unified TypeScript SDK for building chat bots across multiple platforms, providing a single interface for deploying bot logic.

73.0k
0
Communication

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
Communication

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
Communication