rafter-cli CLAUDE.md

rafter-cli CLAUDE.md is an instructions file for Claude Code from Raftersecurity/rafter-cli. It costs 1,552 tokens per session, scanned A, original, MIT.

A set of project instructions for Rafter, a security command-line tool with Node.js and Python implementations. It describes the repository layout, commands, architecture, and development rules.

In plain words
What is it for?
Use it when installing, testing, changing, or extending the Rafter CLI and its security scanning, policy, audit, or agent commands.
Why use it?
It gives a coding agent the project-specific context needed to work consistently across both implementations.

Instructions file for Claude Code

Written for Claude Code: the file is CLAUDE.md.

Install

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.

agentmods
npx agentmods add instructions/raftersecurity/rafter-cli/claude-md
Clone the repo
git clone --depth 1 https://github.com/Raftersecurity/rafter-cli

Made for: Claude Code.

Wrote 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.

agentmods badge for rafter-cli CLAUDE.md

README.md
[![agentmods](https://agentmods.dev/badge/instructions/raftersecurity/rafter-cli/claude-md.svg)](https://agentmods.dev/instructions/raftersecurity/rafter-cli/claude-md)
Your own site
<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>
Per session 1,552 This file is loaded in full into every session.
When invoked 1,552 The same file — it is already loaded in full.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

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.

ModelPer sessionOnce 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

Measured yesterday against content hash 04ee9fe3fab5, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-06, from the pricing page.

Security

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.

CLAUDE.md · 130 lines

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

Read the full file on GitHub · 130 lines

Changes

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.

  1. yesterday First seen · 130 lines · 1,552 tokens per session scan A 04ee9fe3fab5

Subscribe to this mod's changes

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.

Related

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…

e2b-dev/E2B · 306 tokens

mirage CLAUDE.md

Claude Code instructions for strukto-ai/mirage, covering claude.md, repo layout, typescript packages, python/typescript parity and module layout.

strukto-ai/mirage · 15,767 tokens

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.

Garudex-Labs/caracal · 472 tokens

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).

Anselmoo/mcp-zen-of-languages · 2,472 tokens

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).

Anselmoo/mcp-zen-of-languages · 1,855 tokens

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).

Anselmoo/mcp-zen-of-languages · 1,229 tokens