ワンクリックで
planforge-bug-fix-tdd
Fix a bug using TDD: reproduce with a failing test first, then implement the fix, then verify. Prevents regressions.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Fix a bug using TDD: reproduce with a failing test first, then implement the fix, then verify. Prevents regressions.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Run a comprehensive code review across architecture, security, testing, naming, and patterns. Invokes relevant reviewer agents in sequence. Use before merging features or at the end of a phase. With --quorum, dispatches multi-model analysis for higher confidence.
Audit UI components for WCAG 2.2 compliance, semantic HTML, ARIA labels, keyboard navigation, color contrast, and responsive design.
Audit API endpoints for backward compatibility, versioning, OpenAPI compliance, pagination, rate limiting, and RFC 9457 error responses.
Review code for architecture violations: layer separation, sync-over-async, missing CancellationToken, improper DI. Use for PR reviews or code audits.
Review CI/CD pipelines for best practices: environment promotion, secrets management, rollback strategies, build caching, and deployment safety.
Audit code for data privacy compliance: PII handling, consent flows, data retention, audit logging, GDPR/CCPA/SOC2 requirements.
| name | planforge-bug-fix-tdd |
| description | Fix a bug using TDD: reproduce with a failing test first, then implement the fix, then verify. Prevents regressions. |
Follow the Red-Green-Refactor cycle to fix a bug with a regression test.
[Fact] or [Theory] with descriptive name: {Method}_When{Condition}_Should{Expected}CalculateDiscount_WhenNegativePrice_ShouldThrowValidationExceptiondotnet test --no-buildCancellationToken