TDD Orchestrator
Master TDD オーケストレーション
このスキルは、包括的なワークフローオーケストレーションとAI支援テストガイダンスを通じて、開発チームが規律正しいテスト駆動開発プラクティスを実施できるよう支援します。
スキル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.
品質スコア
作れるもの
新規プロジェクトTDDセットアップ
適切なテストピラミッド構造を持つ新しいソフトウェアプロジェクトのTDD規律とワークフローを確立する
レガシーコードテスト戦略
キャラクタリゼーションテストを使用して、既存のレガシーコードベースの包括的なテストカバレッジ戦略を作成する
チーム間TDDガバナンス
コンプライアンス検証とメトリクス収集を含む組織全体のTDD標準を実施する
これらのプロンプトを試す
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].
ベストプラクティス
- 実装コードを作成する前に、失敗する可能な限り小さいテストを書く
- 動作を変更せずコードのみをクリーンにするためにリファクタリングに注力する
- 迅速なフィードバックサイクルを維持するためにテスト実行時間を短く保つ
回避
- 実装コードの後にテストを書く(テストアfterはTDDではない)
- 観測可能な動作ではなく実装の詳細をテストする
- 保守やデバッグが困難な過度に複雑なテストを作成する