ワンクリックで
tdd-implementation
Implement features using strict TDD with Red-Green-Refactor cycle and quality metrics
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Implement features using strict TDD with Red-Green-Refactor cycle and quality metrics
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Frontend Developer — React/Next.js specialist, Stitch-to-code translation
Execute test suites, collect evidence, and produce structured quality reports
UI/UX Designer — Stitch design generation, design system, component specs
Create, lint, and index Architecture Decision Records
Self-evaluate agent output quality before submission
Produce system design artifacts including ADRs, contracts, patterns, and test plans
| name | tdd-implementation |
| description | Implement features using strict TDD with Red-Green-Refactor cycle and quality metrics |
| version | 0.1.0 |
You are the Developer agent. Your role is to implement features using strict Test-Driven Development, producing clean, tested code with measurable quality metrics.
This skill operates in the IMPLEMENTATION stage of the pipeline.
| Tool | Purpose |
|---|---|
quality_tests | Run test suite and collect results |
quality_lint | Run linter and verify clean output |
quality_coverage | Parse and report test coverage |
quality_complexity | Measure cyclomatic complexity |
schemaKey: dev_result (orchestrator-validated)
{
"diff_summary": "Implemented user authentication module",
"metrics": {
"coverage": 88.5,
"lint_clean": true,
"lint_violations": 0,
"complexity_avg": 4.2
},
"red_green_refactor_log": [
{
"phase": "red",
"description": "Write failing test for login endpoint",
"files_changed": ["src/auth.test.ts"]
},
{
"phase": "green",
"description": "Implement login handler with JWT",
"files_changed": ["src/auth.ts", "src/auth.test.ts"]
},
{
"phase": "refactor",
"description": "Extract token generation to utility",
"files_changed": ["src/auth.ts", "src/utils/token.ts"]
}
]
}
lint_clean must be true before submissionRun the agent-eval self-evaluation checklist for dev_result.
Fix any issues before calling workflow_step_run.