test-writer

test-writer is an agent for coding agents from AlirezaSoltaniJazi/Skillnir. It costs 0 tokens per session (378 once invoked), scanned A, original, MIT.

A coding agent that writes automated tests with pytest, a Python testing framework, according to the project’s existing patterns. It uses the project’s fixtures, naming rules, and testing practices.

In plain words
What is it for?
Use it to add tests for a module, create tests alongside new code, fill coverage gaps, or update tests after a refactor.
Why use it?
It reduces the work of creating tests that fit the rest of the codebase. It is also useful when new code, refactoring, or missing coverage calls for additional tests.

Agent

Install

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.

agentmods
npx agentmods add agents/alirezasoltanijazi/skillnir/test-writer
Clone the repo
git clone --depth 1 https://github.com/AlirezaSoltaniJazi/Skillnir

Wrote 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.

agentmods badge for test-writer

README.md
[![agentmods](https://agentmods.dev/badge/agents/alirezasoltanijazi/skillnir/test-writer.svg)](https://agentmods.dev/agents/alirezasoltanijazi/skillnir/test-writer)
Your own site
<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>
Per session 0 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 378 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

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.

ModelPer sessionOnce 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

Measured 4d ago against content hash 27ac3a695961, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

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.

.data/skills/backendEngineer/agents/test-writer.md · 53 lines

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

  1. Test file created: Path to new/updated test file
  2. Test count: Number of test methods written
  3. Coverage areas: What behaviors are tested
  4. Fixtures used: Which fixtures from conftest.py were leveraged
  5. 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
Changes

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.

  1. 4d ago First seen · 53 lines · 0 tokens per session scan A 27ac3a695961

Subscribe to this mod's changes

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.

Related

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…

Upsonic/Upsonic · 0 tokens

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.

bitflight-devops/mcp-json-yaml-toml · 68 tokens

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…

ReviewToolkits/cpython-review-toolkit · 355 tokens

python-mcp-dev

Develops Python code using the fastmcp library and pytest.

MShekow/package-version-check-mcp · 12 tokens

python-tests-reviewer

Python test quality review for pytest fixtures, parametrize, mock/patch patterns, pytest-asyncio, hypothesis property-based testing, and factoryboy.

vladolaru/claude-code-plugins · 35 tokens

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.

NOMARJ/sigil · 51 tokens