plano CLAUDE.md

plano CLAUDE.md is an instructions file for coding agents from katanemo/plano. It costs 1,270 tokens per session, scanned A, original, Apache-2.0.

Repository instructions for Plano, an AI-focused proxy and data-routing service built on Envoy. They list how to build its Rust, Python, and JavaScript parts, run checks, and test the system.

In plain words
What is it for?
Use them when changing Plano code, Rust WebAssembly plugins, the native Rust command-line program, Python tools, JavaScript or TypeScript packages, Docker files, or end-to-end tests.
Why use it?
They give coding agents the exact commands and target platforms needed to validate changes across a mixed-language project. This reduces guesswork about builds, formatting, linting, and tests.

Instructions file

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/katanemo/plano/claude-md
Clone the repo
git clone --depth 1 https://github.com/katanemo/plano

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 plano CLAUDE.md

README.md
[![agentmods](https://agentmods.dev/badge/instructions/katanemo/plano/claude-md.svg)](https://agentmods.dev/instructions/katanemo/plano/claude-md)
Your own site
<a href="https://agentmods.dev/instructions/katanemo/plano/claude-md"><img src="https://agentmods.dev/badge/instructions/katanemo/plano/claude-md.svg" alt="Measured on agentmods" height="20"></a>
Per session 1,270 This file is loaded in full into every session.
When invoked 1,270 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 $0.01270 $0.01270
Opus 5 $0.00635 $0.00635
Sonnet 5 $0.00254 $0.00254
Haiku 4.5 $0.00127 $0.00127

Measured 4d ago against content hash 2138ac5aa390, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

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

CLAUDE.md · 107 lines

How it starts

The opening of the file, as written. The whole thing — 107 lines — stays where its author put it; the contents beside it link to each section on GitHub.

CLAUDE.md

Plano is an AI-native proxy server and data plane for agentic applications, built on Envoy proxy. It centralizes agent orchestration, LLM routing, observability, and safety guardrails as an out-of-process dataplane.

Build & Test Commands

# Rust — WASM plugins (must target wasm32-wasip1)
cd crates && cargo build --release --target=wasm32-wasip1 -p llm_gateway -p prompt_gateway

# Rust — brightstaff binary (native target)
cd crates && cargo build --release -p brightstaff

# Rust — tests, format, lint
cd crates && cargo test --lib
cd crates && cargo fmt --all -- --check
cd crates && cargo clippy --locked --all-targets --all-features -- -D warnings

# Python CLI
cd cli && uv sync && uv run pytest -v

# JS/TS (Turbo monorepo)
npm run build && npm run lint && npm run typecheck

# Pre-commit (fmt, clippy, cargo test, black, yaml)
pre-commit run --all-files

# Docker
docker build -t katanemo/plano:latest .

E2E tests require a Docker image and API keys: tests/e2e/run_e2e_tests.sh

Architecture

Client → Envoy (prompt_gateway.wasm → llm_gateway.wasm) → Agents/LLM Providers
                              ↕
                         brightstaff (native binary: state, routing, signals, tracing)

Crates (crates/)

  • prompt_gateway (WASM) — Proxy-WASM filter for prompt processing, guardrails, filter chains
  • llm_gateway (WASM) — Proxy-WASM filter for LLM request/response handling and routing
  • brightstaff (native) — Core server: handlers, router, signals, state, tracing
  • common (lib) — Shared: config, HTTP, routing, rate limiting, tokenizer, PII, tracing
  • hermesllm (lib) — LLM API translation between providers. Key types: ProviderId, ProviderRequest, ProviderResponse, ProviderStreamResponse

Python CLI (cli/planoai/)

Entry point: main.py. Built with rich-click. Commands: up, down, build, logs, trace, init, cli_agent.

Config (config/)

  • plano_config_schema.yaml — JSON Schema for validating user configs
  • envoy.template.yaml — Jinja2 template → Envoy config
  • supervisord.conf — Process supervisor for Envoy + brightstaff

Read the full file on GitHub · 107 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. 4d ago First seen · 107 lines · 1,270 tokens per session scan A 2138ac5aa390

Subscribe to this mod's changes

plano CLAUDE.md is an instructions file published in the GitHub repository katanemo/plano (7,033 stars, last pushed 14d ago), licensed Apache-2.0. It adds 1,270 tokens to every session, about $0.0064 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.