ワンクリックで
ai-sdlc-3-develop
Implement the current use case using strict TDD.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Implement the current use case using strict TDD.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Initialize or align a repository for AI-SDLC based on the intended system.
Verify repository readiness for release.
Create or update a minimal use case specification.
Determine minimal architecture components for the current use case.
Verify or collaboratively define the deployment workflow.
| name | ai-sdlc-3-develop |
| description | Implement the current use case using strict TDD. |
Implement the current use case using Test-Driven Development.
docs/TASKS.md
docs/specs/UC-[NNN]-[NAME].md
docs/PROJECT.md
Derive tests from the UC.
Acceptance → Integration tests
Domain rules → Unit tests
Use case logic → Unit tests
Locations
tests/integration
tests/unit
Prefer extending existing test files.
Create new files only if necessary.
Follow TDD:
RED → GREEN → REFACTOR
Run unit tests
pytest -q tests/unit
Tests before code.
Keep code minimal.
Avoid unnecessary comments.
Prefer updating existing tests and code.
Respect Clean Architecture
domain ← application ← interfaces ← infrastructure
Ask the user if requirements are unclear.
Implementation complete.
Unit tests pass.
Update:
docs/TASKS.md
Set:
PHASE → 3