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/playpip/pip-web/claude-mdgit clone --depth 1 https://github.com/playpip/pip-webWrote 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/instructions/playpip/pip-web/claude-md)<a href="https://agentmods.dev/instructions/playpip/pip-web/claude-md"><img src="https://agentmods.dev/badge/instructions/playpip/pip-web/claude-md.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.00912 | $0.00912 |
| Opus 5 | $0.00456 | $0.00456 |
| Sonnet 5 | $0.00182 | $0.00182 |
| Haiku 4.5 | $0.00091 | $0.00091 |
Grade A, and why
pip-web CLAUDE.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 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 — 63 lines — stays where its author put it; the contents beside it link to each section on GitHub.
CLAUDE.md — agent guide for Pip
Pip is a clean, single-player Texas Hold'em web app (play money, no account needed,
desktop-first). GitHub repo: playpip/pip-web.
Full documentation lives in docs/ — read it before non-trivial
work. This file is the quick-start and the non-negotiables.
Read first (by task)
| Doing… | Read |
|---|---|
| Anything | docs/README.md, docs/architecture.md |
| Poker rules / AI | docs/poker-engine.md |
| Tournament pacing / economy | docs/game-flow.md |
| UI / styling | docs/design.md |
| Copy / naming / tone | docs/brand.md |
| Venues / venue art | docs/venues.md |
| Persistence / backup / offline PWA | docs/data-and-offline.md |
| Setup / testing / conventions / deploy | docs/development.md |
The three layers (respect the boundaries)
- Engine —
src/lib/poker/. Pure, deterministic, React-free, unit-tested. Rules live here. - Orchestration —
src/store/game.ts(turn pacing, AI timers, economy) +src/store/profile.ts(persisted). - Presentation —
src/components/,src/app/. Reads stores; look & feel only.
Rules change → engine (+ tests). Pacing/money → game store. Looks → components + tokens.
Non-negotiables
- Package manager: pnpm. Never hand-pin versions — install latest, let pnpm resolve.
- Tests: AVA, not Vitest. Engine changes ship with tests.
- Colours: theme tokens only. Never hardcode
bg-white/…,text-black, etc. Useforeground/<alpha>for subtle surfaces,bg-primary/text-primary-foregroundfor emphasis. Must work in both light and dark. (See docs/design.md.) - No real money framing. Play-money "chips" only; never show
$. No casino textures, no pop-ups, no dark patterns. (See docs/brand.md.) - Determinism in the engine. Pass a seeded
Rng; noDate.now()/Math.random()in logic that must be reproducible. - Engine stays pure. No React/store/browser imports in
src/lib/poker/. - Persisted profile changes → bump
PERSIST_VERSION+ add amigratebranch insrc/store/profile.ts. set-state-in-effect(React 19 rule, enforced by convention) — use the patterns in docs/development.md (useHydrated, mount-form-while-open), notsetStateinuseEffect.- Releases are automatic. Pushing to
maindeploys and cuts a release: the version auto-bumps (patch by default;#minor/#majorin the commit subject line to bump harder — the body is ignored), tags, and publishes a GitHub Release. Don't bumppackage.jsonversion by hand. (See docs/development.md → Deploy & releases.)
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 · 63 lines · 912 tokens per session scan A 8bc957723174
pip-web CLAUDE.md is an instructions file published in the GitHub repository playpip/pip-web (10 stars, last pushed yesterday), licensed MIT. It adds 912 tokens to every session, about $0.0046 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
onchainai copilot-instructions.md
Copilot instructions for Coinyak/onchainai, covering copilot instructions — onchainai, project, 3-command ui workflow, build / test (server features required) and rules (see agents.md for full list).
Hackathon-Stellaroid_Earn AGENTS.md
AGENTS.md instructions for Iron-Mark/Hackathon-Stellaroid_Earn, covering agents.md, what this repo is, common commands, frontend (frontend/) and stellar cli (environment setup).
swarmfi CLAUDE.md
Claude Code instructions for zacharyftw/swarmfi, a project described as: AI agent swarm that farms DeFi yields so you don't have to.
onchainai CLAUDE.md
Claude Code instructions for Coinyak/onchainai, a project described as: Crypto tool directory: discover, normalize, and expose MCP, CLI, SDK, API, x402, RWA, and AI-agent tools.
quantum-shield AGENTS.md
AGENTS.md instructions for kota1026/quantum-shield, covering agents.md - quantum shield project, project overview, core components, allowed actions and file operations.
evmole AGENTS.md
Instructions for cdump/evmole: EVMole extracts structured facts from deployed EVM runtime bytecode.