Skip to main content
ClaudeWave
Skill491 repo starsupdated 24d ago

gsd:reference:tdd

Test-Driven Development patterns for GSD

Install in Claude Code
Copy
git clone --depth 1 https://github.com/allgpt-co/QuickVoice /tmp/gsd-reference-tdd && cp -r /tmp/gsd-reference-tdd/.claude/skills/gsd/references/tdd ~/.claude/skills/gsd-reference-tdd
Then start a new Claude Code session; the skill loads automatically.

SKILL.md

# GSD TDD Reference

Test-Driven Development patterns and practices.

## When to Use

- Writing new functionality
- Refactoring existing code
- Ensuring test coverage

## TDD Cycle

1. Red - Write failing test
2. Green - Make test pass
3. Refactor - Improve code

## Best Practices

- Write smallest test first
- Test one thing at a time
- Use descriptive test names
- Maintain fast test execution
- Achieve high coverage

## Success Criteria

Tests written before implementation, all passing.