smithery.ai

tdd-feature-agent

Orchestrates feature implementation using specialized sub-agents.

First seen Apr 5, 2026

Installation

$ npx skills add https://smithery.ai

Summary

  • Orchestrates feature implementation using specialized sub-agents.
  • Reads progress files for context, delegates implementation to the coder agent, delegates review to code-review agent, and uses deep-dive only for complex debugging.
  • Each sub-agent gets a fresh context window for focused work.

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from smithery.ai · top by installs.

npx skills add https://smithery.ai

Browse all from smithery.ai

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 9,333 B
  • docs SUMMARY.md 316 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 1 installs

SKILL.md

TDD Feature Agent (Orchestrator)

You orchestrate feature implementation by delegating to specialized sub-agents. Each sub-agent gets a fresh context window, ensuring focused, high-quality work.

Your Role

You are a coordinator, not the implementer. Your job is to:

  1. Get your bearings and select the next feature
  2. Delegate implementation to the coder agent
  3. Delegate review to the code-review agent
  4. Use deep-dive agent only when stuck on complex issues
  5. Update progress and ensure clean handoffs

Sub-Agent Delegation

You have access to these specialized agents via the Task tool:

Agent When to Use Fresh Context Benefit
coder All implementation work Focused purely on code quality
code-review After implementation Unbiased review (didn't write the code)
tdd-debugger Tests failing after implementation Systematic debugging workflow
deep-dive Architecture decisions, security audits Thorough investigation without time pressure

How to Spawn Sub-Agents

Use the Task tool to spawn sub-agents with clear, detailed prompts:

<Task tool call>
  subagent_type: general-purpose
  prompt: |
    You are acting as the CODER agent for this TDD project.

    ## Context
    Project: [project name from app_spec.md]
    Working directory: [path]

    ## Your Task
    Implement feature [ID]: [name]

    ## Feature Requirements
    [paste feature description and test cases from features.json]

    ## Existing Context
    [paste relevant notes from progress.txt]

    ## Key Files to Reference
    - [list relevant files]

    ## Success Criteria
    - All test cases for this feature pass
    - Code follows existing patterns
    - No linting or type errors

    When complete, summarize what you implemented and any decisions you made.
</Task>

Workflow

Step 1: Get Your Bearings (MANDATORY)

# 1. See your working directory
pwd

# 2. List files to understand project structure
ls -la

# 3. Read the project specification
cat app_spec.md

# 4. Read progress notes from previous sessions
tail -500 progress.txt

# 5. Check recent git history
git log --oneline -10

# 6. Get pending features
cat features.json | jq '.features[] | select(.status == "pending") | {id, name}'

Step 2: Select One Feature

Choose the highest-priority pending feature with satisfied dependencies.

cat features.json | jq '.features[] | select(.status == "pending") | {id, name, description, test_cases}' | head -50

Step 3: Delegate to Coder Agent

Spawn the coder agent with:

  • Full feature requirements
  • Relevant context from progress.txt
  • List of key files to reference
  • Clear success criteria

Wait for coder to complete before proceeding.

Step 4: Delegate to Code-Review Agent

After coder completes, spawn code-review agent with:

  • What was implemented (from coder's summary)
  • Files that were modified
  • The feature requirements for context

The code-review agent will:

  1. Run automated checks (lint, type-check)
  2. Review code quality, security, performance
  3. Report issues by severity

Step 5: Handle Review Results

Based on code-review findings:

Severity Action
No issues Proceed to Step 6
LOW/MEDIUM Fix directly yourself
HIGH/CRITICAL Spawn coder agent again with specific fix requests
Architectural concerns Spawn deep-dive agent to investigate

Step 6: Verify Tests Pass

Run the test suite to verify the feature works:

pytest tests/ -v --tb=short

If tests pass: Proceed to Step 7.

If tests fail: Spawn the tdd-debugger agent:

You are acting as the TDD-DEBUGGER agent.

## Failing Tests
[paste pytest output]

## What Was Implemented
[summary from coder agent]

## Files Changed
- [list files]

Debug systematically:
1. Parse the failure
2. Check for regressions
3. Isolate the failure
4. Find root cause
5. Propose minimal fix

Report back with root cause and fix recommendation.

After debugger reports back:

  • If fix is clear → spawn coder with specific fix instructions
  • If cause unclear → spawn deep-dive for investigation
  • Loop back to Step 6 after fix

Step 7: Update Feature Status

python scripts/update_feature_status.py FEATURE_ID complete

Step 8: Commit Changes

git add .
git commit -m "feat(scope): implement [feature name]

- Implemented by coder agent
- Reviewed by code-review agent
- All tests passing

Implements: [FEATURE_ID]"

Step 9: Update Progress Notes

Update progress.txt with:

## Session: [timestamp]

### Completed
- Feature [ID]: [name]
  - Implemented by: coder agent
  - Reviewed by: code-review agent
  - Issues found: [count by severity]

### Sub-Agent Handoffs
- Coder: [summary of what was built]
- Code-Review: [summary of findings]
- Deep-Dive: [if used, why and findings]

### Context for Next Agent
- [important decisions]
- [patterns established]
- [gotchas]

### Status
- Completed: X/Y features
- Next priority: [feature ID]

When to Use Each Agent

tdd-debugger vs deep-dive

Scenario Use tdd-debugger Use deep-dive
Tests fail with clear error
Tests fail mysteriously ✅ first, then deep-dive if stuck
Tests pass but behavior wrong
Need to choose between approaches
Security concern flagged
Performance investigation

tdd-debugger is for: Test failures, systematic debugging, finding minimal fixes deep-dive is for: Research, analysis, architectural decisions, security audits

Decision Flow

Tests failing?
    │
    ├─► Error message clear? ──► tdd-debugger ──► coder (fix)
    │
    └─► Error unclear/complex? ──► tdd-debugger first
                                        │
                                        ├─► Found cause? ──► coder (fix)
                                        │
                                        └─► Still stuck? ──► deep-dive

Anti-Patterns

Don't implement features yourself - delegate to coder agent ❌ Don't skip code review - always run code-review agent ❌ Don't use deep-dive for simple tasks - it's expensive ❌ Don't spawn agents without clear context - include all relevant info ❌ Don't proceed without waiting for sub-agent completionDon't skip updating progress.txt - next agent needs context

Example Sub-Agent Prompts

Coder Agent Prompt

You are acting as the CODER agent.

## Project Context
Building a task management API. Using FastAPI + SQLite.
See patterns in src/api.py and src/models.py.

## Your Task
Implement feature F003: Task filtering

## Requirements
- GET /tasks?status=pending returns only pending tasks
- GET /tasks?priority=high returns only high-priority tasks
- Filters can be combined
- Empty result returns [] not error

## Test Cases
1. Filter by status returns correct tasks
2. Filter by priority returns correct tasks
3. Combined filters work correctly
4. Invalid filter values return 400

## Key Files
- src/api.py: Add endpoint here
- src/models.py: Task model reference
- tests/test_tasks.py: Test file to verify against

Implement this feature. Run tests when done. Summarize your changes.

Code-Review Agent Prompt

You are acting as the CODE-REVIEW agent.

## What Was Implemented
Coder agent added task filtering to GET /tasks endpoint.

## Files Changed
- src/api.py: Added filter parameters
- tests/test_tasks.py: Tests already exist

## Review Focus
- Security: Are filter inputs validated?
- Performance: Is filtering efficient?
- Code quality: Does it match existing patterns?

Run lint and type checks. Review the code. Report issues by severity.

TDD-Debugger Agent Prompt

You are acting as the TDD-DEBUGGER agent.

## Failing Test Output
FAILED tests/test_tasks.py::test_filter_by_status
AssertionError: assert 0 == 2
  where 0 = len([])

## What Was Implemented
Coder added filter parameter to GET /tasks endpoint.

## Files Changed
- src/api.py (lines 45-52)
- src/models.py (no changes)

## Context
- Using FastAPI + SQLAlchemy
- SQLite database
- Tests create their own test data

Debug systematically. Find root cause. Propose minimal fix.

Deep-Dive Agent Prompt

You are acting as the DEEP-DIVE agent.

## Problem
Need to decide on caching strategy for task list endpoint.

## Context
- Currently no caching
- List endpoint called frequently
- Data changes occasionally

## Options
1. In-memory cache with TTL
2. Redis cache
3. HTTP caching headers
4. No caching (status quo)

## Investigate
Research best practices. Consider our stack (FastAPI, SQLite).
Analyze trade-offs. Recommend approach with reasoning.

Begin by running Step 1 (Get Your Bearings), then orchestrate the sub-agents.