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/glitternetwork/pinme/agents-mdgit clone --depth 1 https://github.com/glitternetwork/pinmeWhat 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.00723 | $0.00723 |
| Opus 5 | $0.00362 | $0.00362 |
| Sonnet 5 | $0.00145 | $0.00145 |
| Haiku 4.5 | $0.00072 | $0.00072 |
Grade A, and why
pinme AGENTS.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 2d 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.
Copies of this mod
1 near-identical copy found in the catalogue:
- pinme CLAUDE.md — 92% identical, 6 lines differ
How it starts
The opening of the file, as written. The whole thing — 52 lines — stays where its author put it; the contents beside it link to each section on GitHub.
AGENTS.md
This file provides guidance to Codex (Codex.ai/code) when working with code in this repository.
Project Overview
PinMe is a zero-config CLI tool for deploying static sites to IPFS. Built with TypeScript, bundled with esbuild, published to npm as pinme. Users run commands like pinme upload dist to deploy frontends.
Build & Dev
npm run build # Production build (esbuild → dist/index.js)
npm run dev # Dev build
npm run test # Unit/integration tests (Vitest)
npm run test:cli # Real CLI black-box tests against dist/index.js
npm run verify # Full PR gate: lint, typecheck, tests, build, CLI, pack
npm run test:mutation # Slow mutation tests (manual/nightly)
Build uses build.js (esbuild), NOT rollup.config.js (legacy, unused). esbuild reads .env via dotenv at build time and injects env vars as process.env.* defines.
The output is a single CJS file at dist/index.js with a shebang, used as the pinme CLI binary.
Architecture
bin/index.ts— CLI entry point, usescommanderto register all commandsbin/*.ts— Individual command implementations (upload, save, create, bind, importCar, exportCar, delete, etc.)bin/utils/— Shared utilities:config.ts—APP_CONFIGsingleton, all API base URLs and tuning knobs from env varsapiClient.ts— Axios client factory (createPinmeApiClient,createCarApiClient)pinmeApi.ts— High-level API wrappers (domain binding, wallet, CAR export, etc.)uploadToIpfs.ts/uploadToIpfsSplit.ts— IPFS upload logic (single file vs chunked)webLogin.ts— Auth token management (reads from~/.pinme/)domainValidator.ts— Domain name validation and DNS vs subdomain detectioncliError.ts— Structured CLI error types
bin/services/uploadService.ts— Upload orchestration (hash encryption, URL generation)skills/— Codex skill definitions for this project
Key Patterns
- Auth: AppKey stored locally at
~/.pinme/. Auth headers injected viagetAuthHeaders()inwebLogin.ts. - API clients: Always use
createPinmeApiClient()orcreateCarApiClient()fromapiClient.ts, never raw axios. - Token expiry:
pinmeApi.tshas centralized token-expired detection (isTokenExpired) — all API calls should go through wrappers there. - Config: All env-driven config lives in
APP_CONFIG(config.ts). Don't readprocess.envdirectly elsewhere. - The
savecommand readspinme.tomlfrom project root for full-stack deploy (frontend + Cloudflare Worker + D1).
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.
- 2d ago First seen · 52 lines · 723 tokens per session scan A 5e00bbd01634
pinme AGENTS.md is an instructions file published in the GitHub repository glitternetwork/pinme (3,735 stars, last pushed 1mo ago), licensed MIT. It adds 723 tokens to every session, about $0.0036 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-30.
Other instructions, from other repositories
evmole AGENTS.md
Instructions for cdump/evmole: EVMole extracts structured facts from deployed EVM runtime bytecode.
plamen CLAUDE.md
Instructions for PlamenTSV/plamen, covering plamen — security auditor, execution model, reference files and shared.
ai-workflow AGENTS.md
Instructions for cunhaax/ai-workflow, covering ai workflow template, rules — non-negotiable, project overview, commands and architecture.
trackly-cli CLAUDE.md
Claude Code instructions for trackly-app/trackly-cli, covering trackly-cli, tech stack, backend production source of truth, directory structure and key commands.
com-example-config-AsyncTestConfig
Instructions for PIsberg/vibetags, covering copilot instructions for asynctestconfig and immutable type.
pupila CLAUDE.md
Instructions for FranRom/pupila, covering claude.md, where things live, stack, run locally and repo layout.