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/raftersecurity/rafter-cli/claude-mdgit clone --depth 1 https://github.com/Raftersecurity/rafter-cliWrote 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/raftersecurity/rafter-cli/claude-md)<a href="https://agentmods.dev/instructions/raftersecurity/rafter-cli/claude-md"><img src="https://agentmods.dev/badge/instructions/raftersecurity/rafter-cli/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.1 | $0.01552 | $0.01552 |
| Opus 5 | $0.00776 | $0.00776 |
| Sonnet 5 | $0.00310 | $0.00310 |
| Haiku 4.5 | $0.00155 | $0.00155 |
Grade A, and why
rafter-cli 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 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 — 130 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Rafter CLI — Agent Guide
Rafter is a dual-implementation (Node.js + Python) security CLI for AI coding agents. Both implementations have full feature parity and must stay in sync.
Quick Start
# Node.js
cd node && pnpm install && pnpm test
# Python
cd python && poetry install && pytest
Architecture
├── node/ # TypeScript implementation (@rafter-security/cli on npm)
│ ├── src/
│ │ ├── commands/ # CLI commands (commander.js)
│ │ │ ├── agent/ # agent init/scan/exec/audit/config
│ │ │ ├── mcp/ # MCP server (server.ts exports createServer)
│ │ │ ├── scan/ # scan local/remote
│ │ │ ├── hook/ # hook pretool/commit
│ │ │ ├── policy/ # policy export/validate
│ │ │ ├── ci/ # ci init
│ │ │ ├── brief.ts # knowledge delivery
│ │ │ ├── notify.ts # Slack/Discord webhooks
│ │ │ └── report.ts # HTML security reports
│ │ ├── core/ # Shared logic
│ │ │ ├── command-interceptor.ts # Risk classification + policy enforcement
│ │ │ ├── audit-logger.ts # JSONL audit trail
│ │ │ └── config-manager.ts # .rafter.yml + global config
│ │ └── scanners/
│ │ ├── betterleaks.ts # Betterleaks binary integration
│ │ ├── secret-patterns.ts # DEFAULT_SECRET_PATTERNS array (21+ patterns)
│ │ └── regex-scanner.ts # RegexScanner class (imports secret-patterns)
│ └── tests/ # Vitest test files
├── python/ # Python implementation (rafter-cli on PyPI)
│ ├── rafter_cli/
│ │ ├── commands/ # CLI commands (typer)
│ │ ├── core/ # Mirrors node/src/core/
│ │ └── scanners/ # secret_patterns.py + regex_scanner.py + betterleaks.py
│ └── tests/ # pytest test files
├── shared-docs/ # Canonical specs (both implementations follow these)
│ └── CLI_SPEC.md # Output contracts, exit codes, JSON schemas
├── recipes/ # Copy-paste integration guides per platform
├── vscode/ # VS Code extension
├── github-action/ # GitHub Action wrapper
└── .github/workflows/ # CI: test + publish to npm/PyPI
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 · 130 lines · 1,552 tokens per session scan A 04ee9fe3fab5
rafter-cli CLAUDE.md is an instructions file published in the GitHub repository Raftersecurity/rafter-cli (27 stars, last pushed 3d ago), licensed MIT. It adds 1,552 tokens to every session, about $0.0078 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-09-04.
Other instructions, from other repositories
E2B CLAUDE.md
Claude Code instructions for e2b-dev/E2B: Use pnpm for node and uv for python to install and update dependencies. Run pnpm run format, pnpm run lint and pnpm run typecheck before committing changes. When modifying the SDK packages, ensure equivalent changes are applied to both JS as well as sync and async Python…
mirage CLAUDE.md
Claude Code instructions for strukto-ai/mirage, covering claude.md, repo layout, typescript packages, python/typescript parity and module layout.
caracal sdk-language-parity.instructions.md
Use when adding, changing, or reviewing code in the multi-language client packages (sdk, admin, core, identity, oauth, revocation, verify, adapters, backends). Enforces functional capability parity across TypeScript, Python, and Go.
mcp-zen-of-languages architecture.instructions.md
Instructions for Anselmoo/mcp-zen-of-languages, covering analyzer architecture refactoring, problem statement, solution: architectural patterns, 1. template method pattern (base structure) and 2. strategy pattern (detectors).
mcp-zen-of-languages copilot-instructions.md
Copilot instructions for Anselmoo/mcp-zen-of-languages, covering mcp zen of languages - ai agent instructions, architecture overview, running the server, via module and via entry point (after uv sync).
mcp-zen-of-languages mandatory-python-312.instructions.md
Instructions for Anselmoo/mcp-zen-of-languages, covering python 3.12+ syntax updates summary, changes made, ✅ updated files, syntax changes and before (python 3.9 style).