Install
$ agentstack add skill-morodomi-tdd-skills-tdd-green ✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ✓ Network access No
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ✓ Environment & secrets No
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
Verified badge
Passed review? Show it. Paste this badge into your README, it links to the public security report.
Reliability & compatibility
Declared compatibility
Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.
We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.
How agent discovery & health will work →About
TDD GREEN Phase
テストを通すための最小限の実装を行う(並列実行がデフォルト)。
Progress Checklist
GREEN Progress:
- [ ] Cycle doc確認、WIPテスト抽出
- [ ] ファイル依存関係分析
- [ ] green-worker並列起動
- [ ] 結果収集・マージ
- [ ] 全テスト実行→成功確認
- [ ] Cycle doc更新(WIP→DONE)
- [ ] REFACTOR自動実行
禁止事項
- 過剰な実装(テストに必要ない機能)
- リファクタリング(REFACTORで行う)
- 新しいテスト作成(REDで行う)
Workflow
Step 1: Cycle doc確認
ls -t docs/cycles/*.md 2>/dev/null | head -1
WIPのテストケースを抽出。
Step 2: ファイル依存関係分析
テストケースを対象ファイル別にグルーピング:
| ファイル | テストケース | |----------|-------------| | src/Auth.php | TC-01, TC-02 | | src/User.php | TC-03 |
原則: 同一ファイル→同一workerに割り当て(競合回避)
Step 3: green-worker並列起動
Taskツールで tdd-core:green-worker を並列起動:
Task 1: TC-01, TC-02 → src/Auth.php
Task 2: TC-03 → src/User.php
Step 4: 結果収集・マージ
全workerの完了を待ち、結果を統合。失敗時は該当workerのみ再試行。
Step 5: 全テスト実行→成功確認
php artisan test # PHP
pytest # Python
期待: 全テストが成功すること(GREEN状態)
Verification Gate
| 結果 | 判定 | アクション | |------|------|-----------| | 全テスト成功 | PASS | REFACTORへ自動進行 | | テスト失敗 | BLOCK | 該当worker再試行 |
Step 6: 完了→REFACTOR自動実行
GREEN完了。全テスト成功を確認しました。
REFACTORフェーズを開始します。
Skill(tdd-core:tdd-refactor) を実行してREFACTORフェーズへ進む。
Reference
- 詳細: [reference.md](reference.md)
- green-worker: [../../agents/green-worker.md](../../agents/green-worker.md)
- Phase Completion(圧縮ガイダンス): [reference.md#phase-completion](reference.md#phase-completion)
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: morodomi
- Source: morodomi/tdd-skills
- License: MIT
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet, be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.