Plan to tdd
Skill georgekhananaev/claude-skills-vault/.claude/skills/plan-to-tdd
A curated collection of high impact skills for Claude Code designed to supercharge the senior full stack workflow. This vault automates the repetitive parts of development like architectural reviews, TDD cycles, and PR management so you can stay in flow. It is a force multiplier for shipping clean, production ready code at scale. πβ‘οΈ
npx -y skills add georgekhananaev/claude-skills-vault --skill plan-to-tddAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
What its author says it does
Copied from the file, not written here
Transform feature plans into test-driven implementation using Outside-In methodology. This skill should be used when converting documented plans from docs/plan/ into testable code w/ proper test structure (Unit, Integration, E2E).
SKILL.md
7.5 KB, as published. Nobody here has run it
Plan-to-TDD
Transform feature plans β test-driven implementation using Outside-In methodology.
When to Use
Invoke when:
- Converting plan docs from
docs/plan/YYYY/MM/to code - Designing test structure for new features
- Applying TDD w/ architectural awareness
- Bridging system design to implementation
Prerequisites
- Reference:
.claude/skills/test-levelsfor Unit/Integration/E2E guidance - Plan files in
docs/plan/YYYY/MM/YYYY_MM_DD_HHmm__FEATURE_NAME.md
Related Skills
| Skill | Location | Phase |
|---|---|---|
doc-navigator | .claude/skills/doc-navigator | Load/Design - find existing patterns |
uiux-toolkit | .claude/skills/uiux-toolkit | Verify - 9-domain UX evaluation |
test-levels | .claude/skills/test-levels | Plan/Execute - test distribution |
Outside-In Workflow
SYSTEM DESIGN β INTEGRATION TESTS (Red) β TDD UNITS β E2E VALIDATION
Phase Flow
βββββββββββββββββββββββββββββββββββββββββββββββββββ
β 1. SYSTEM DESIGN β
β Components β Contracts β Dependencies β
ββββββββββββββββββββββ¬βββββββββββββββββββββββββββββ
βΌ
βββββββββββββββββββββββββββββββββββββββββββββββββββ
β 2. INTEGRATION TESTS (Red) β
β Validate component contracts - tests FAIL β
ββββββββββββββββββββββ¬βββββββββββββββββββββββββββββ
βΌ
βββββββββββββββββββββββββββββββββββββββββββββββββββ
β 3. TDD UNIT PHASE β
β Red β Green β Refactor per unit β
ββββββββββββββββββββββ¬βββββββββββββββββββββββββββββ
βΌ
βββββββββββββββββββββββββββββββββββββββββββββββββββ
β 4. E2E VALIDATION β
β Complete user journey verification β
βββββββββββββββββββββββββββββββββββββββββββββββββββ
Execution Steps
Step 1: Load Plan
Input: docs/plan/YYYY/MM/YYYY_MM_DD_HHmm__FEATURE_NAME.md
Extract:
- User story & acceptance criteria
- Components & dependencies
- Data flows
- Technical constraints
Expected structure:
# Feature: [Name]
## User Story
As a [user], I want to [action] so that [benefit].
## Acceptance Criteria
- [ ] Criterion 1
- [ ] Criterion 2
## Components
- Component A: Description
- Component B: Description
## Data Flow
1. Step 1
2. Step 2
Step 2: Define Contracts
For each component boundary:
interface [Component]Contract {
input: {
type: string;
validation: string[];
source: string; // sender component
};
output: {
type: string;
successCase: string;
errorCases: string[];
};
dependencies: string[];
}
Step 3: Generate Tests
E2E Tests (Complete Car)
// tests/e2e/[feature].spec.ts
describe('[Feature] - User Journey', () => {
test('User can [action] successfully', async () => {
// Arrange β Act β Assert
});
test('User sees error when [condition]', async () => {
// Error path from user perspective
});
});
Integration Tests (Engine + Transmission)
// tests/integration/[component].test.ts
describe('[ComponentA] β [ComponentB]', () => {
test('Contract: [description]', async () => {
// Validates the "arrow" in system design
});
test('Handles timeout gracefully', async () => {
// Test architectural assumptions
});
});
Unit Tests (Individual Parts)
// tests/unit/[module].test.ts
describe('[Module]', () => {
test('returns [expected] when [condition]', () => {
// Red β Green β Refactor
});
test('throws [error] when [invalid input]', () => {
// Edge cases
});
});
Step 4: Implementation Order
1. Scaffold Create files & empty interfaces
β
2. E2E (Red) Failing E2E for user journey
β
3. Integration For each boundary:
(Red) - Failing integration test
- Validates contract
β
4. TDD Cycle For each unit:
(RedβGreenβ - Failing unit test
Refactor) - Min code to pass
- Refactor for clarity
β
5. Integration Run integration (should pass)
(Green)
β
6. E2E (Green) Run E2E (should pass)
β
7. Refactor Clean up, optimize
The Bridge: Design β Mocks
System design arrow becomes mock:
βββββββββββββββ βββββββββββββββ
β OrderServiceβββββΆβInventorySvcβ
βββββββββββββββ βββββββββββββββ
const mockInventoryService = {
checkStock: jest.fn(),
};
describe('OrderService', () => {
test('throws OutOfStockException when inventory = 0', () => {
mockInventoryService.checkStock.mockReturnValue(0);
expect(() => orderService.placeOrder(item))
.toThrow(OutOfStockException);
});
});
Key insight: TDD validates architectural contracts:
- Timeouts in design β Test timeout handling
- Error responses β Test error handling
- Data transforms β Test transformations
Test Pain β Design Fix
| Pain Signal | Design Issue | Fix |
|---|---|---|
| 50+ lines mock setup | Too coupled | Split into smaller services |
| Needs real DB | Missing abstraction | Add repository interface |
| Can't test isolated | Circular deps | Restructure dependency graph |
| Brittle tests | Leaky abstractions | Strengthen contracts |
When pain detected:
- Stop coding
- Document the pain
- Return to design
- Refactor architecture
- Resume TDD
Output Artifacts
Generate in /docs/features/[feature]/:
DESIGN.md- System design docCONTRACTS.md- Interface contractsTEST-PLAN.md- Test structure & orderIMPLEMENTATION.md- Build plan w/ tasks
Quick Reference
# Load & parse plan
/load-plan [plan-path]
# Extract components
/extract-components [plan-path]
# Generate contracts
/define-contracts [plan-path]
# Generate test scaffolds
/generate-tests [plan-path]
# Start TDD w/ first red test
/tdd-start [plan-path]
# List plans
/list-plans
/list-plans --month 2024-03
Test Distribution (from test-levels)
| Level | Question | Location |
|---|---|---|
| Unit | "Does this fn work?" | tests/unit/ |
| Integration | "Do parts connect?" | tests/integration/ |
| E2E | "Does flow work?" | tests/e2e/ |
Pyramid: Many unit β Some integration β Few E2E