Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx agentmods add skills/morodomi/tdd-skills/tdd-commitnpx skills add morodomi/tdd-skills --skill tdd-commitgit clone --depth 1 https://github.com/morodomi/tdd-skillsWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/skills/morodomi/tdd-skills/tdd-commit)<a href="https://agentmods.dev/skills/morodomi/tdd-skills/tdd-commit"><img src="https://agentmods.dev/badge/skills/morodomi/tdd-skills/tdd-commit.svg" alt="Measured on agentmods" height="20"></a>What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5 | $0.00037 | $0.00542 |
| Opus 5 | $0.00018 | $0.00271 |
| Sonnet 5 | $0.00007 | $0.00108 |
| Haiku 4.5 | $0.00004 | $0.00054 |
Grade A, and why
tdd-commit scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 4d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
What it actually says
TDD COMMIT Phase
変更をGitコミットしてTDDサイクルを完了する。
Progress Checklist
コピーして進捗を追跡:
COMMIT Progress:
- [ ] git status / git diff で変更確認
- [ ] Pre-commit Hook確認
- [ ] Cycle doc更新(phase: DONE)
- [ ] docs/STATUS.md 更新
- [ ] コミットメッセージ生成
- [ ] git add & git commit
- [ ] サイクル完了
Workflow
Step 1: 変更確認
git status
git diff --stat
Step 2: Pre-commit Hook確認
コミット時のテスト自動実行を確認:
ls .husky/pre-commit .git/hooks/pre-commit 2>/dev/null
| 状態 | メッセージ |
|---|---|
| hookあり | コミット時に自動実行されます |
| hookなし | 手動でテスト実行を推奨(tdd-reviewで実行済みならOK) |
Step 3: Cycle doc更新
phase を DONE に変更。Next Stepsを更新。
Step 4: docs/STATUS.md 更新
gh issue list --limit 10 --json number,title,labels
ls -t docs/cycles/*.md | head -5
STATUS.md を最新状態に更新。
Step 5: コミットメッセージ生成
Type: feat / fix / refactor / test
<type>: <subject>
<body>
Co-Authored-By: Claude Opus 4.5 <[email protected]>
Step 6: git add & git commit
git add <files>
git commit -m "..."
Step 7: サイクル完了
================================================================================
TDDサイクル完了
================================================================================
コミット: [hash]
機能: [機能名]
次: git push / tdd-init で新サイクル開始
================================================================================
Reference
- 詳細: reference.md
- Gitコンベンション:
.claude/rules/git-conventions.md
What ships with it
1 file beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 4d ago First seen · 96 lines · 37 tokens per session scan A 3d182a47e46d
tdd-commit is a skill published in the GitHub repository morodomi/tdd-skills (8 stars, last pushed 6mo ago), licensed MIT. It adds 37 tokens to every session and 542 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.
Other skills, from other repositories
workflow
Run the complete 5-step development workflow: focus problem → prevent over-development → test-first (TDD) → document → smart commit. Use when starting a new feature, or when the user runs /workflow or asks for the full development flow.
invokta-delivery
Deliver Invokta milestones and work items with TDD, adherence to versioned contracts and architecture, complete validation, and one cohesive commit per work item. Use when developing features, fixing bugs, executing roadmap milestones, or completing acceptance criteria in this repository.
workflow-patterns
Use this skill when implementing tasks according to Conductor's TDD workflow, handling phase checkpoints, managing git commits for tasks, or understanding the verification protocol.
quick
/quick — Lightweight Feature Workflow.
workflow-patterns
Use this skill when implementing tasks according to Conductor's TDD workflow, handling phase checkpoints, managing git commits for tasks, or understanding the verification protocol.
dx-tdd
Execute the next pending phase of a change's plan test-first — red, green, refactor — and commit.