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/makedirectory/modelpeer/agents-mdgit clone --depth 1 https://github.com/makedirectory/ModelPeerWhat 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.04508 | $0.04508 |
| Opus 5 | $0.02254 | $0.02254 |
| Sonnet 5 | $0.00902 | $0.00902 |
| Haiku 4.5 | $0.00451 | $0.00451 |
Grade A, and why
ModelPeer AGENTS.md scanned grade A with 1 finding 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 yesterday.
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.
Makes network callslowCapability
Not a fault in itself. Listed so you know the mod talks to something, and to what.
`install.sh` must work standalone when piped from `curl`, so it carries a verbatim How it starts
The opening of the file, as written. The whole thing — 351 lines — stays where its author put it; the contents beside it link to each section on GitHub.
AGENTS.md
This file provides guidance to coding agents working in this repository. It is the
single source of truth for all three ecosystems: CLAUDE.md (Claude Code) and
GEMINI.md (Gemini CLI) are symlinks to this file. Edit AGENTS.md; never replace
a symlink with a copy.
What this is
Model Peer is a cross-model peer-review bridge. It lets one coding agent consult a
different vendor's CLI (claude, codex, gemini) as an independent, read-only
engineering peer, and fans a Git diff out to several models for independent review
before a synthesizer reconciles the findings.
There is no build step, no dependencies, and no runtime beyond Bash and the vendor CLIs. The entire product is one Bash script.
Commands
make test # smoke tests against stub CLIs; runs check-sync first
make lint # bash -n over every script, plus shellcheck when installed
make sync # regenerate install.sh's embedded copy of bin/model-peer
The docs site lives in documentation/ (Docusaurus, deployed to GitHub Pages by
.github/workflows/docs.yml). It is the only part of the repo with Node
dependencies; the tool itself stays dependency-free.
It is served from the custom domain https://modelpeer.app, which depends on
three things staying in agreement: documentation/static/CNAME (Docusaurus copies
it verbatim into the build, and GitHub Pages reads it), and url / baseUrl in
docusaurus.config.js. Reverting baseUrl to /ModelPeer/ breaks every asset
path on the live site. Link to docs pages from the README as
https://modelpeer.app/<page>, never as a github.io URL.
cd documentation && npm install && npm run build # build fails on broken links
User-facing behavior changes need the matching page updated under documentation/docs/,
not only the README. The README is the entry point; the site is the reference.
tests/smoke.sh is a single linear script with no test-case selection. To run one
assertion in isolation, copy its block into a scratch file that reuses the stub
setup from the top of tests/smoke.sh. The stubs log invocations to
$MODEL_PEER_TEST_LOG and never contact a real model or consume usage.
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.
- yesterday First seen · 351 lines · 4,508 tokens per session scan A ecc1ca492d4e
ModelPeer AGENTS.md is an instructions file published in the GitHub repository makedirectory/ModelPeer (1 stars, last pushed 15d ago), licensed MIT. It adds 4,508 tokens to every session, about $0.0225 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.
Other instructions, from other repositories
mirage CLAUDE.md
Claude Code instructions for strukto-ai/mirage, covering claude.md, repo layout, typescript packages, python/typescript parity and module layout.
lade AGENTS.md
Instructions for zifeo/lade, covering agents.md, build & test, house rules, project layout and maintainer note.
senior-engineering-partner CLAUDE.md
Instructions for bjgreenberg/senior-engineering-partner, covering claude.md — senior-engineering-partner, model requirement (read before editing anything), repo shape, pr rules and gates & sharp edges.
claudebar CLAUDE.md
Instructions for mryll/claudebar, covering claude.md, tooling, non-obvious rules, hardening rules — the widget runs inside omarchy-shell and release.
ralph CLAUDE.md
Instructions for SantanderAI/ralph, covering ralph — instrucciones del proyecto and paridad bash ↔ powershell (importante).
claude-code-statusline CLAUDE.md
Instructions for glauberlima/claude-code-statusline, covering claude.md, project overview, development commands, testing and run all tests (unit + integration).