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 instructions/kevinrabun/judges/releasegit clone --depth 1 https://github.com/KevinRabun/judgesWhat 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.01657 | $0.01657 |
| Opus 5 | $0.00829 | $0.00829 |
| Sonnet 5 | $0.00331 | $0.00331 |
| Haiku 4.5 | $0.00166 | $0.00166 |
Grade A, and why
judges release.instructions.md 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.
How it starts
The opening of the file, as written. The whole thing — 173 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Release & Deployment — Agent Instructions
When preparing and publishing a new release of @kevinrabun/judges, follow this checklist exactly. The publish workflow is automated via GitHub Actions — your job is to prepare the commit and tag.
Overview
Publishing is triggered by pushing a v* git tag (e.g., v3.18.1). The publish-mcp.yml workflow handles:
- npm publish — builds, packs, and publishes
@kevinrabun/judgesto the npm registry with provenance - npm publish (CLI) — publishes
@kevinrabun/judges-clito the npm registry with provenance (version synced automatically) - GitHub Release — creates a release from the tag with auto-generated notes
- MCP Registry — publishes
server.jsonto the Model Context Protocol registry viamcp-publisher - VS Code Marketplace — syncs the extension version from the git tag, installs the local tarball, and publishes via
vsce
You do not need to run npm publish or vsce publish locally — the action does it all. Your responsibility is: version bumps, changelogs, commit, and tag.
Files That Need Version Updates
Update the version string in all four of these files:
| File | Field(s) | Example |
|---|---|---|
package.json |
"version" |
"version": "3.18.1" |
server.json |
"version" (top-level) and "packages[0].version" |
Both must match |
vscode-extension/package.json |
"version" |
"version": "3.18.1" |
server.jsonhas two version fields — the top-level"version"and"packages[0].version". Both must be updated. This file has historically gone stale; always verify it.
action.ymldoes not contain a version string — it is referenced by tag (e.g.,uses: KevinRabun/[email protected]), so no edit is needed.
The CI workflow patches
vscode-extension/package.jsonat publish time from the git tag, but keep it in sync locally to avoid confusion.
Changelogs That Need Updating
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 · 173 lines · 1,657 tokens per session scan A 3f926576898f
judges release.instructions.md is an instructions file published in the GitHub repository KevinRabun/judges (7 stars, last pushed 2mo ago), licensed MIT. It adds 1,657 tokens to every session, about $0.0083 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 instructions, from other repositories
openrouter-mcp-multimodal AGENTS.md
Instructions for stabgan/openrouter-mcp-multimodal, covering agent instructions, before you ship, releasing (read this before publishing), short version and version files (must all match package.json).
rosetta changelog-discipline.instructions.md
Use when a change has a user-visible effect. Records exactly one CHANGELOG.md bullet under [Unreleased].
rosetta manual-version-bump.instructions.md
Version bumps and CHANGELOG promotion are a manual, human step for every release channel. CI must not reintroduce an auto-bump/auto-commit job.
rosetta npm-channel-source-of-truth.instructions.md
Instructions for tikoci/rosetta, a project described as: MCP Server with RouterOS docs + commands + products + changelogs, using SQLite-as-RAG, sourced from MikroTik.
rosetta republish-assets-not-npm.instructions.md
Instructions for tikoci/rosetta: The republishassets workflow input is for GitHub Release assets and OCI tags only.
rosetta release-via-ci.instructions.md
Published releases go through the GitHub Actions Release workflow. Do not document or rely on stale local release commands.