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 commands/osmantic/ods/tddgit clone --depth 1 https://github.com/Osmantic/ODSWhat 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.00017 | $0.03625 |
| Opus 5 | $0.00009 | $0.01813 |
| Sonnet 5 | $0.00003 | $0.00725 |
| Haiku 4.5 | $0.00002 | $0.00363 |
Grade A, and why
tdd 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 2d 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.
How it starts
The opening of the file, as written. The whole thing — 509 lines — stays where its author put it; the contents beside it link to each section on GitHub.
TDD TDD TDD - Strict Test-Driven Development
Enforce the classic Red -> Green -> Refactor cycle. Tests are written FIRST, implementation comes SECOND.
"TDD TDD TDD" - the repetition is intentional. This skill enforces discipline.
ODS has two test ecosystems: Shell (BATS + bash assert) and Python (pytest). This skill handles both.
Arguments
$ARGUMENTS- Feature description and options:- First part: Feature description in quotes or as text
--shell- Write shell/BATS test (default for installers/, scripts/, ods-cli)--python- Write Python/pytest test (default for dashboard-api/)--file <path>- Explicit test file path
The Three Laws of TDD
- You may not write production code until you have written a failing test
- You may not write more test than is sufficient to fail
- You may not write more production code than is sufficient to pass the test
Philosophy: Ask Early, Ask Often
This skill should liberally use AskUserQuestion at decision points. TDD involves judgment about what to test, test granularity, and when the implementation is "done." The user should direct these choices.
- Before writing the test — confirm what behavior to test and test type
- After RED phase — validate that the failure is the right kind before implementing
- After GREEN phase — ask if the implementation approach is acceptable
- After each cycle — ask whether to iterate or stop
Workflow
Phase 0: Understand the Feature
Before writing anything:
- Parse
$ARGUMENTSto extract feature description and flags - Analyze the feature - what behavior needs to be tested?
- Determine test ecosystem (Shell or Python) based on the feature area:
Shell Test Locations (BATS)
| Feature Area | Test Path | Implementation Path |
|---|---|---|
| Installer libraries | tests/bats-tests/<lib>.bats |
installers/lib/<lib>.sh |
| Installer phases | tests/bats-tests/<phase>.bats |
installers/phases/<phase>.sh |
| Scripts | tests/test-<script>.sh |
scripts/<script>.sh |
| CLI features | tests/test-<feature>.sh |
ods-cli |
| Compose selection | tests/bats-tests/compose-select.bats |
installers/lib/compose-select.sh |
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.
- 2d ago First seen · 509 lines · 17 tokens per session scan A 9dcee87bf9ba
tdd is a command published in the GitHub repository Osmantic/ODS (5,819 stars, last pushed yesterday), licensed Apache-2.0. It adds 17 tokens to every session and 3,625 once invoked, about $0.0001 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-30.
Other commands, from other repositories
resume-workflow
Resume workflow execution from current branch context.
start-development
Start development workflow process in Moira.
finish-feature
Start feature completion workflow in Moira.
text-to-3d
Generate a static textured GLB from one subject description, locally.
tdd-requirements
TDD開発の要件整理を行います。機能要件を明確化し、テスト駆動開発のための準備を行います。.
triage
Triage Linear issue with comprehensive analysis.