TDD Orchestrator
Master TDD Orchestration
This skill helps development teams implement disciplined test-driven development practices through comprehensive workflow orchestration and AI-assisted testing guidance.
スキルZIPをダウンロード
Claudeでアップロード
設定 → 機能 → スキル → スキルをアップロードへ移動
オンにして利用開始
テストする
「TDD Orchestrator」を使用しています。 Help me implement TDD for a user authentication feature
期待される結果:
Here is a complete TDD implementation plan:
1. RED PHASE: Write failing tests first
- Test user creation with valid credentials
- Test authentication with correct password
- Test authentication failure with wrong password
2. GREEN PHASE: Implement minimum code to pass
- Create User entity with password validation
- Implement AuthenticationService
3. REFACTOR PHASE: Improve code structure
- Extract password hashing logic
- Add proper error handling
Recommended test structure: Unit tests for services, integration tests for repository layer.
「TDD Orchestrator」を使用しています。 Design multi-agent testing workflow for microservices
期待される結果:
Multi-Agent TDD Workflow Design:
1. UNIT AGENT: Tests individual service logic
2. CONTRACT AGENT: API contract verification between services
3. INTEGRATION AGENT: Service interaction testing
4. E2E AGENT: Full workflow validation
Coordination Pattern:
- Unit → Contract → Integration → E2E
- Parallel execution where possible
- Shared contract definitions
- Environment provisioning per agent
セキュリティ監査
安全Prompt-only skill containing no executable code. Provides guidance on TDD practices and testing methodologies. Static analysis scanned 0 files with 0 lines of code. No security risks detected. This is an informational/educational skill about software testing best practices.
品質スコア
作れるもの
New Project TDD Setup
Establish TDD discipline and workflow for a new software project with proper test pyramid structure
Legacy Code Testing Strategy
Create comprehensive test coverage strategy for existing legacy codebase using characterization tests
Cross-Team TDD Governance
Implement organization-wide TDD standards with compliance verification and metrics collection
これらのプロンプトを試す
Help me implement TDD for a new feature. Guide me through the red-green-refactor cycle for [describe your feature].
Design a multi-agent workflow for coordinated testing across unit, integration, and E2E levels for [describe project].
Create a TDD metrics framework including cycle time, coverage thresholds, and quality gates for [describe team size].
Implement property-based testing strategy using [framework] for complex business logic validation in [describe domain].
ベストプラクティス
- Write the smallest possible test that fails before writing any implementation code
- Keep refactoring focused only on making code cleaner without changing behavior
- Maintain fast test execution times to preserve rapid feedback cycles
回避
- Writing tests after implementation code (test-after is not TDD)
- Testing implementation details rather than observable behavior
- Creating overly complex tests that are hard to maintain and debug