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 skills/minmax/pi-cli-mcp/testingnpx skills add minmax/pi-cli-mcp --skill testinggit clone --depth 1 https://github.com/minmax/pi-cli-mcpWhat 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.00062 | $0.00953 |
| Opus 5 | $0.00031 | $0.00477 |
| Sonnet 5 | $0.00012 | $0.00191 |
| Haiku 4.5 | $0.00006 | $0.00095 |
Grade A, and why
testing 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 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.
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 — 72 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Testing
The suite drives the real server over stdio and points it at a fake pi binary. No mocks of our
own code: a test that passes against a stub of runPi would prove nothing about the protocol.
npm test # suite + type tests, no API access, no tokens
PI_CLI_MCP_LIVE=1 npm test # also runs the real pi binary
npx vitest run test/x.test.ts # one file
Tests run the server from src/ through Node's TypeScript support, so they exercise the source, not
a stale dist/.
Layout
| file | covers |
|---|---|
protocol.test.ts |
handshake, JSON-RPC conformance, notifications, frame limits |
answer.test.ts |
answer selection, stop-reason handling, stats line, input validation |
failure.test.ts |
what a killed run reports: session id, progress, resumability, stderr scrubbing |
lifecycle.test.ts |
timeout, cancellation, shutdown, concurrency, leftover-process cleanup |
sessions.test.ts |
continuity across restarts, remembered options, the session mutex |
transport.test.ts |
print vs rpc, and reaching a running turn |
packaging.test.ts |
zero runtime dependencies, publishable file list |
pi-contract.test-d.ts |
types against the installed pi — see the pi-contract skill |
live.test.ts |
the real pi, opt-in |
The fake pi
test/fixtures/fake-pi.mjs emits a pi-shaped --mode json stream and speaks the rpc command
protocol. It exists for the paths a live model will not produce on demand: a bad or unknown
stopReason, a settled-but-empty message, a 200k answer, a stream that is not JSON, a final event
without a trailing newline, a hung process, transcript data leaking onto stderr, and a lockfile-based
overlap detector that fails if the session mutex is removed.
Scenarios are chosen with FAKE_MODE; see the header comment for the list and the env switches.
Rules learned the hard way when editing it:
- Never
process.exit()after writing. stdout to a pipe is async and exiting truncates it. Setprocess.exitCode. This bug once cut a 200k answer short and made a real test lie. process.exitCodedoes not stop execution. A branch that sets it must alsoreturn, or it falls through into the event stream — that is how the--list-modelstable once got polluted with agent events while substring assertions hid it.- Scenarios that must hang set
holding = true. They return as soon as their timers are armed, and the rpc path would otherwise read "the function returned" as "the turn is over" and exit — turning a timeout test into an instant clean exit. sh -cexecs a single command, replacing its own image and dropping the tag from the command line thatpgrep -fmatches. Hencesleep 120; true # tag.
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 · 72 lines · 62 tokens per session scan A 7a7d3e0fb4b9
testing is a skill published in the GitHub repository minmax/pi-cli-mcp (0 stars, last pushed 9d ago), licensed MIT. It adds 62 tokens to every session and 953 once invoked, about $0.0003 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
systematic-debugging
Use when encountering any bug, test failure, or unexpected behavior, before proposing fixes.
next-cache-components-adoption
Turn on Cache Components in a Next.js app and resolve the blocking routes it surfaces. Use when the user wants to enable, adopt, or migrate to Cache Components, flip the cacheComponents flag, work through a flood of blocking-prerender / instant validation errors, run the cache-components-instant-false codemod, or…
babysit-pr
Babysit a GitHub pull request after creation by continuously polling review comments, CI checks/workflow runs, and mergeability state until the PR is merged/closed or user help is required. Diagnose failures, retry likely flaky failures up to 3 times, auto-fix/push branch-related issues when appropriate, and keep…
imagegen
Generate or edit raster images when the task benefits from AI-created bitmap visuals such as photos, illustrations, textures, sprites, mockups, or transparent-background cutouts. Use when Codex should create a brand-new image, transform an existing image, or derive visual variants from references, and the output…
cpu-profile-analysis
Analyze V8/Chrome CPU profiles (.cpuprofile) and DevTools trace files (Trace-.json). Use when: profiling performance, investigating slow functions, comparing code paths, finding bottlenecks, analyzing timeToRequest, understanding call trees from sampling profiler data, analyzing layout/paint/rendering, investigating…
next-cache-components-optimizer
Drive a Next.js route to instant navigation by setting up an agentic loop, under Cache Components / PPR, on initial load (hard navigation) and client-side navigation (soft navigation). Encode the goal as a failing @next/playwright instant() e2e and work it to green, one verified route at a time; the shipped test then…