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 skills add enricai/leerie --skill judge-llm-batchgit clone --depth 1 https://github.com/enricai/leerieWrote 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/skills/enricai/leerie/judge-llm-batch)<a href="https://agentmods.dev/skills/enricai/leerie/judge-llm-batch"><img src="https://agentmods.dev/badge/skills/enricai/leerie/judge-llm-batch/github.svg" alt="Measured on agentmods" height="20"></a>Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.
<a href="https://agentmods.dev/skills/enricai/leerie/judge-llm-batch"><img src="https://agentmods.dev/badge/skills/enricai/leerie/judge-llm-batch.svg" alt="Reviewed on agentmods" width="80" height="20"></a>- NVIDIA SkillSpector pass
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.1 | $0.00071 | $0.01973 |
| Opus 5 | $0.00036 | $0.00986 |
| Sonnet 5 | $0.00014 | $0.00395 |
| Haiku 4.5 | $0.00007 | $0.00197 |
Grade A, and why
judge-llm-batch 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 11d 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 — 215 lines — stays where its author put it; the contents beside it link to each section on GitHub.
The calls.ndjson file lives at <state-root>/runs/<run-id>/calls.ndjson,
where <state-root> is the resolved leerie state directory (default
$HOME/.leerie/<basename>/, overridable via LEERIE_STATE_DIR /
--state-dir / leerie.toml state_dir; /leerie-state inside the
container) — never a path relative to CWD.
Output shape:
{
"call_type": "<from filter>",
"run_id": "<from file>",
"judged_at": "<ISO-8601>",
"judge_model": "claude-sonnet-4-6",
"verdicts": [
{
"call_id": "<UUID from the capture>",
"schema_ok": true,
"schema_rationale": "<one sentence>",
"factually_grounded": true,
"factual_rationale": "<one sentence>",
"hallucination_free": true,
"hallucination_rationale": "<one sentence>",
"pass": true,
"worst_offender": "<optional — 1-line quote when any dimension failed>"
}
],
"aggregate": {
"n": 0,
"schema_pass": 0,
"factual_pass": 0,
"hallucination_free_pass": 0,
"overall_pass": 0
}
}
pass is true only when all three dimensions are true.
<execution_context>
Arguments parsed from $ARGUMENTS:
- First positional: path to
calls.ndjson(required). Can also be a<state-root>/runs/<run-id>/directory — the skill will findcalls.ndjsoninside it. --call-type <name>(required): one ofclassifier,planner,reconciler,implementer,integrator,conformer. Filters the NDJSON to only lines with thiscall_typevalue.--run-id <id>(optional): if provided, resolves the path as<state-root>/runs/<run-id>/calls.ndjson, where<state-root>is the resolved leerie state directory (default$HOME/.leerie/<basename>/, overridable viaLEERIE_STATE_DIR/--state-dir/leerie.toml state_dir;/leerie-stateinside the container) — never a path relative to CWD.--out <path>(optional): explicit verdict output path; defaults to<ndjson-dir>/judge-out/<call_type>-verdicts.json.
The NDJSON line shape (from IMPLEMENTATION.md §10):
{
"call_id": "<UUID v4>",
"run_id": "<str>",
"call_type": "<str>",
"model": "<str>",
"system_prompt": "<str>",
"user_content": "<str>",
"response_content": "<str>",
"parsed_ok": true,
"input_tokens": 0,
"output_tokens": 0,
"latency_ms": 0,
"success": true,
"ts": "<ISO-8601>"
}
</execution_context>
The judge skill operates post-run: it reads the archive, scores a batch, and writes verdicts. The llm-self-heal skill consumes these verdicts to propose prompt patches.
Each call_type maps to exactly one system-prompt source
(IMPLEMENTATION.md §10 call_type → prompt table):
| call_type | Prompt source |
|---|---|
| classifier | prompts/classifier.md |
| planner | prompts/planner.md |
| reconciler | prompts/reconciler.md |
| implementer | prompts/implementer.md |
| integrator | prompts/integrator.md |
| conformer | prompts/conformer.md |
The system_prompt field in the NDJSON capture is the actual verbatim
text injected — so the judge can always derive what the worker was asked
to do from the capture alone.
Step 1: Locate and read the NDJSON file
Resolve the input path from $ARGUMENTS. If the path is a directory,
append /calls.ndjson. Read line-by-line and parse each line as JSON.
Filter to lines where call_type matches the --call-type argument.
If zero lines match, emit: No captures for call_type=<name> in <path> and stop.
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.
- 11d ago First seen · 215 lines · 71 tokens per session scan A 0d10e9f855f3
judge-llm-batch is a skill published in the GitHub repository enricai/leerie (10 stars, last pushed 9d ago), licensed MIT. It adds 71 tokens to every session and 1,973 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-31.
Other skills, from other repositories
agent-platform-rag-engine-management
Manage and query Agent Platform RAG Engine Corpora and retrieve grounded contexts using the Google GenAI SDK. Use when listing RAG corpora or files, inspecting a corpus, retrieving contexts, or generating content grounded in a RAG corpus. Do not use for standard database queries (use SQL/Spanner skills), Google…
agent-platform-model-registry
Agent Platform Model Registry Management. Use when you need to upload, list, describe, update, or delete machine learning models (and their versions) in the Agent Platform Model Registry. Don't use for model training, model deployment to endpoints, or managing non-Agent Platform models.
foundry-config-setup
Resolve missing setup caused by a hardcoded Foundry project endpoint or model in a sample. Use when a sample fails because it uses a placeholder/hardcoded projectendpoint (for example "https://your-project.services.ai.azure.com") or a hardcoded model instead of reading them from the environment.
google-cloud-solution-agentic-analytics-spark-knowledge-catalog
Discovers requirements and generates guidance to design and deploy a governed, secure agentic-analytics solution for data that's distributed across Google Cloud, other cloud providers, or on-premises. Data that's outside Google Cloud (such as data from Databricks, Snowflake, Salesforce, SAP, or Oracle systems) is…
training-check
Interactively monitor training metrics from the current Codex session, periodically checking WandB or fallback logs for NaN, divergence, plateaus, and broken runs.
nemo-automodel-launcher-config
Configure NeMo AutoModel job launches for interactive runs, Slurm clusters, and SkyPilot cloud execution.