permit0 CLAUDE.md

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

Project instructions for permit0, a Rust workspace with tools for policy packs, scoring, calibration, and an administration dashboard.

In plain words
What is it for?
Use them when developing or checking permit0, including building the workspace, running tests, validating packs, calibrating profiles, and starting the admin dashboard.
Why use it?
They provide the exact build, test, lint, formatting, audit, calibration, and pack-validation commands, including the project’s strict warning rules.

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

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

README.md
[![agentmods](https://agentmods.dev/badge/instructions/permit0-ai/permit0/claude-md.svg)](https://agentmods.dev/instructions/permit0-ai/permit0/claude-md)
Your own site
<a href="https://agentmods.dev/instructions/permit0-ai/permit0/claude-md"><img src="https://agentmods.dev/badge/instructions/permit0-ai/permit0/claude-md.svg" alt="Measured on agentmods" height="20"></a>
Per session 1,759 This file is loaded in full into every session.
When invoked 1,759 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.01759 $0.01759
Opus 5 $0.00879 $0.00879
Sonnet 5 $0.00352 $0.00352
Haiku 4.5 $0.00176 $0.00176

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

Security

Grade A, and why

permit0 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 5d 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 · 144 lines

How it starts

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

CLAUDE.md

This file provides guidance to Claude Code (claude.ai/code) when working with code in this repository.

Commands

# Build
cargo build --workspace
cargo build --release --workspace

# Test (CI uses nextest)
cargo nextest run --workspace
cargo test --workspace

# Run a single test
cargo nextest run -p permit0-engine <test_name>
cargo test -p permit0-scoring -- scorer::tests::more_flags_higher_score

# Lint (warnings are errors)
cargo clippy --workspace --all-targets -- -D warnings

# Format
cargo fmt --all
cargo fmt --all --check

# Supply-chain audit
cargo deny check

# Calibration tests (run after changing packs or profiles)
cargo run -- calibrate test
cargo run -- calibrate test --corpus corpora/calibration --profile fintech

# Pack testing
cargo run -- pack test packs/stripe
cargo run -- pack validate packs/stripe

# Start admin dashboard
cargo run -- serve --ui --port 9090

RUSTFLAGS="-D warnings" is set in CI; all warnings are fatal.

Python bindings (permit0-py)

The Python bindings crate is excluded from default-members, so cargo build (no flags) skips it. Two ways to build it:

# Canonical: build + install editable wheel into the active Python env
cd crates/permit0-py
maturin develop                # uses whichever Python `maturin` resolves to

# Plain cargo (also works thanks to .cargo/config.toml on macOS)
cargo build --workspace        # builds every crate including permit0-py
cargo build -p permit0-py      # builds permit0-py only

macOS notes:

  • .cargo/config.toml adds -undefined dynamic_lookup for aarch64-apple-darwin and x86_64-apple-darwin so PyO3's extension-module cdylib links without a libpython.
  • If both a conda env and a .venv are active, maturin refuses with a dual-env error — unset VIRTUAL_ENV (or unset CONDA_PREFIX) to disambiguate.

Architecture

permit0 is a deterministic, rule-based permission framework for AI agent tool calls. There is no LLM in the hot path — the decision pipeline is pure Rust.

Read the full file on GitHub · 144 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. 5d ago First seen · 144 lines · 1,759 tokens per session scan A e4fc07676e6e

Subscribe to this mod's changes

permit0 CLAUDE.md is an instructions file published in the GitHub repository permit0-ai/permit0 (185 stars, last pushed 2mo ago), licensed Apache-2.0. It adds 1,759 tokens to every session, about $0.0088 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.