From claude-tdd-workflow
Start a TDD feature workflow with parallel builders across schema, service, route, hook, and component layers. Use when the user wants to build a new feature, add functionality, or implement a vertical slice.
How this skill is triggered — by the user, by Claude, or both
Slash command
/claude-tdd-workflow:featureThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
TDD feature workflow with parallel builders. Each phase must complete before the next.
TDD feature workflow with parallel builders. Each phase must complete before the next.
Workspace: Stay on the current branch — never git checkout, git switch, git checkout -b, git stash, or create branches. The user picks the workspace (worktree, feature branch, or main) at session start; the skill must respect that choice. If the user wants isolation, they spawn with --worktree or pass isolation: "worktree" on parallel sub-agent invocations.
Library Docs table with lookup methods per library.
b. If no table exists, search the web for each library's llms.txt (e.g., https://<library-domain>/llms.txt).
c. For each library relevant to the in-scope layers, use the specified method to search for the specific pattern/concept you're about to implement.
d. This applies equally to modifying existing code — if the existing pattern might be outdated, verify it against current docs before extending it.| # | Phase | What happens | Details |
|---|---|---|---|
| 1 | SPEC | Define types, API contract, task cards | Read phases/01-spec.md |
| 2 | BUILD | Parallel TDD builders per layer | Read phases/02-build.md |
| 3 | WIRE | Connect layers, add routing | Read phases/03-wire.md |
| 4 | REVIEW | Subagent code review + fixes | Read phases/04-review.md |
| 5 | INTEGRATION | Final validation, all tests, browser check | Read phases/05-integration.md |
When entering a phase, read its detail file for full instructions.
_deprecated prefixes, no // removed comments, no shims. If something is replaced, the old version is gonenpx claudepluginhub mqlstam/claude-plugins --plugin claude-tdd-workflowGuides creation, editing, and verification of skills for AI coding agents using test-driven development with subagent scenarios. Use when authoring or debugging skills.