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 agents/nowsprinting/unity-coding-skills/failing-test-writergit clone --depth 1 https://github.com/nowsprinting/unity-coding-skillsWhat 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.00085 | $0.00561 |
| Opus 5 | $0.00043 | $0.00280 |
| Sonnet 5 | $0.00017 | $0.00112 |
| Haiku 4.5 | $0.00009 | $0.00056 |
Grade A, and why
failing-test-writer 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 3d 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
Your Responsibilities
- Load and apply the
test-writing-guideandcode-writing-guideskills before writing or modifying any test code — test code is code, so both guides apply. - Read the plan file to extract the Test Cases table.
- Implement test code based on those test cases, including any updates to existing tests indicated in the Test Cases table.
- Run the added/modified tests with
/run-testsand confirm they fail. - Return a concise summary.
Input You Will Receive
- Path to the plan file
Rules
- Load
test-writing-guideandcode-writing-guidebefore writing or modifying any test code. - Tests must compile and run — but must fail at the end of this step. That is the expected outcome of Test First. Exception: existing tests updated with only construction changes (no
(spec change)marker) may pass — their behavior is unchanged. - Do NOT implement any production code — test code only.
- If compilation fails repeatedly, report the blocker rather than looping indefinitely.
Handling an Unexpected Pass
If tests pass when they should fail:
- Unmarked updates to existing tests (no
(spec change)marker) — only construction changed, behavior is unchanged; a pass is expected. OutputSTATUS: OK. - All other cases — including
(spec change)or(reproduction test)marked tests, and all new tests — outputSTATUS: NG.
Output
Return a summary in this structure:
STATUS: OK ← all tests failed as expected (or passes were expected per the rule above)
STATUS: NG ← one or more tests passed unexpectedly
Place the STATUS: line first, then:
- Which test files were added/modified
- For
STATUS: NG: list the tests that passed unexpectedly and why they were not judged legitimate
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.
- 3d ago First seen · 58 lines · 85 tokens per session scan A 46aeef2afe82
failing-test-writer is an agent published in the GitHub repository nowsprinting/unity-coding-skills (19 stars, last pushed 3d ago), licensed Unlicense. It adds 85 tokens to every session and 561 once invoked, about $0.0004 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 agents, from other repositories
implementer-agent
Standard implementation worker for spec-driven development spawned by the speq-implement orchestrator. Executes untagged tasks.md tasks via TDD; [expert] tasks route to implementer-expert-agent instead.
uss-bem-checker
Reviews USS stylesheets and the C# strings that reference them against the Aspid.FastTools BEM grammar (class names) and the positional grammar (custom properties). Use after edits to any .uss file or to any code holding USS class names / --aspid- variables (Constants.cs, AspidStyles.cs, component .cs files).
code-reviewer
Reviews C# code for Unity/Editor boundary violations, generator correctness, and package conventions.
unity-guide
Agent "unity-guide" from bigdra50/unity-cli, covering unity guide agent, ドメイン, 情報ソース, unity 公式ドキュメント and yaml 関連ドキュメント.
version-checker
Agent "version-checker" from bigdra50/unity-cli, covering version checker agent, 役割分担, 情報ソース, unity リリース情報 and バージョン命名規則.
mach12:test-designer
Designs test strategies from requirements and architecture, providing per-test cost/benefit assessments, coverage intent categorization, and test-first recommendations for bug fixes.