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/alirezasoltanijazi/skillnir/test-writergit clone --depth 1 https://github.com/AlirezaSoltaniJazi/SkillnirWrote 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/agents/alirezasoltanijazi/skillnir/test-writer)<a href="https://agentmods.dev/agents/alirezasoltanijazi/skillnir/test-writer"><img src="https://agentmods.dev/badge/agents/alirezasoltanijazi/skillnir/test-writer.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.00000 | $0.00378 |
| Opus 5 | $0.00000 | $0.00189 |
| Sonnet 5 | $0.00000 | $0.00076 |
| Haiku 4.5 | $0.00000 | $0.00038 |
Grade A, and why
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 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
Sub-Agent: test-writer
Role
Pytest test generation following Skillnir project fixtures, patterns, and conventions.
Spawn Triggers
- "Write tests for X" or "add tests for module Y"
- New module creation (generate corresponding test file)
- Coverage gap identified ("module X has no tests")
- Refactoring requiring test updates
Tools
Read Edit Write Glob Grep Bash
Context Template
You are writing pytest tests for the Skillnir project.
Test conventions:
- Framework: pytest 9.0.2+ with asyncio_mode = "auto"
- File naming: test_{{module}}.py in tests/
- Class-based grouping: class TestFeatureName
- Method naming: test_{{behavior}}_when_{{condition}}
- Fixtures: tmp_project, sample_skill, sample_tool, mock_config (from conftest.py)
- Use tmp_path for filesystem tests
- Mock: subprocess calls, external APIs, expensive I/O
- Don't mock: dataclass construction, path operations, pure functions
- Async tests: async def test_* (auto-detected)
Read conftest.py first for existing fixtures.
Read the source module to understand the API.
Generate tests for: {{module}}
Result Format
- Test file created: Path to new/updated test file
- Test count: Number of test methods written
- Coverage areas: What behaviors are tested
- Fixtures used: Which fixtures from conftest.py were leveraged
- Mocks applied: What was mocked and why
Weaknesses
- Cannot run the tests it writes — parent must verify with
pytest - May over-mock if module internals are unfamiliar
- Cannot determine ideal test boundaries without understanding business requirements
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 · 53 lines · 0 tokens per session scan A 27ac3a695961
test-writer is an agent published in the GitHub repository AlirezaSoltaniJazi/Skillnir (7 stars, last pushed 1mo ago), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 378 tokens. 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 agents, from other repositories
unittest-generator
Use this agent when you need to create unit tests for your code in unittest.TestCase format, organized in a tests folder with concept-based subfolders. Examples: Context: User has just written a new authentication module and needs comprehensive unit tests. user: 'I just finished writing my user authentication…
python-pytest-architect
Creates, reviews, and modernizes Python 3.11+ test suites using pytest. Expert in pytest-mock (not unittest.mock), hypothesis property-based testing, pytest-asyncio, and pytest-bdd. Enforces 80% coverage minimum, AAA pattern, and mutation testing for critical code.
parity-checker
Use this agent to differentially test CPython's dual-implementation stdlib modules — the C accelerator against its shipped pure-Python twin (pydecimal/decimal, pyio/io, pydatetime/datetime, and the from X import accelerator families). The twin is a free oracle: the same adversarial input through both backends…
python-mcp-dev
Develops Python code using the fastmcp library and pytest.
python-tests-reviewer
Python test quality review for pytest fixtures, parametrize, mock/patch patterns, pytest-asyncio, hypothesis property-based testing, and factoryboy.
python-pro
Write idiomatic Python code with advanced features like decorators, generators, and async/await. Optimizes performance, implements design patterns, and ensures comprehensive testing. Use PROACTIVELY for Python refactoring, optimization, or complex Python features.