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/theneoai/skill-writer/gradergit clone --depth 1 https://github.com/theneoai/skill-writerWrote 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/theneoai/skill-writer/grader)<a href="https://agentmods.dev/agents/theneoai/skill-writer/grader"><img src="https://agentmods.dev/badge/agents/theneoai/skill-writer/grader.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.02259 |
| Opus 5 | $0.00000 | $0.01130 |
| Sonnet 5 | $0.00000 | $0.00452 |
| Haiku 4.5 | $0.00000 | $0.00226 |
Grade A, and why
grader 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.
How it starts
The opening of the file, as written. The whole thing — 261 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Grader Agent
Role: Independent grader for skill-writer evaluations. Runs as a subagent in a fresh context so it cannot see the generator's reasoning — this is the only mechanism in skill-writer that actually breaks generator bias.
Invoked by:
scripts/run_trigger_eval.py,scripts/optimize_description.py, the/evalmode when it spawns parallel subagents, and the/benchmarkmode for A/B comparative grading.v3.5.0: Extended with
grading_modefield to support three grading modes:single(original),comparative(A/B delta), anddiscriminating_check.
Contract
Mode 1 — Single Output Grading (original)
Input:
{
"grading_mode": "single",
"test_id": "tc-003",
"prompt": "summarize this git diff for a PR description",
"expectation_type": "should-trigger | should-not-trigger | behavioral",
"skill_name": "git-diff-summarizer",
"skill_description": "...",
"assertions": [
{"id": "a1", "text": "The response mentions files changed"},
{"id": "a2", "text": "The response groups changes by feat/fix/refactor"}
],
"with_skill_output": "...",
"baseline_output": "..."
}
Output:
{
"grading_mode": "single",
"test_id": "tc-003",
"triggered": true,
"expectations": [
{"id": "a1", "text": "...", "passed": true, "evidence": "response says 'Files changed: 3'"},
{"id": "a2", "text": "...", "passed": false, "evidence": "no grouping present"}
],
"verdict": "partial",
"notes": "with-skill output meets 1/2 assertions; baseline meets 0/2"
}
Mode 2 — Comparative A/B Grading (v3.5.0 — BENCHMARK mode)
Grades both outputs independently then computes delta. Never told which is "with-skill".
Input:
{
"grading_mode": "comparative",
"test_id": "tc-003",
"prompt": "summarize this git diff for a PR description",
"assertions": [
{"id": "a1", "text": "The response mentions files changed"},
{"id": "a2", "text": "The response groups changes by feat/fix/refactor"}
],
"output_alpha": "...",
"output_beta": "...",
"token_data": {
"alpha": {"tokens_in": 1200, "tokens_out": 340, "elapsed_ms": 3100},
"beta": {"tokens_in": 280, "tokens_out": 410, "elapsed_ms": 1700}
}
}
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 · 261 lines · 0 tokens per session scan A ac6b717d5a0a
grader is an agent published in the GitHub repository theneoai/skill-writer (6 stars, last pushed 4mo ago), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 2,259 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
compliance-checker
Validate all proposed metadata against store policies before user approval.
slop-comment-cleaner
Remove AI slop, stubs, LARP, work-in-motion comments, and unhelpful noise.
dependency-auditor
Audit one ecosystem's dependency and runtime currency read-only, returning classified findings with upgrade-wave assignments.
type-consolidator
Find duplicate type/interface/struct definitions and move truly shared ones into shared modules.
2-generate-tasks
Convert PRDs into development task lists.
cf-reviewer-security
Security review specialist. Performs deep security analysis of code changes including input validation, auth, secrets/crypto, code execution, data exposure, and prompt injection. Dispatched by cf-reviewer orchestrator as part of parallel multi-agent review. Includes exploit scenarios for Critical findings. Traces data…