batou CLAUDE.md

batou CLAUDE.md is an instructions file for coding agents from turenlabs/batou. It costs 6,718 tokens per session, scanned A, original, MIT.

Project instructions for Batou, a security scanner that checks code for vulnerabilities when an AI coding agent writes or edits it. They describe its Go architecture, scanning commands, analysis components, and rule structure.

In plain words
What is it for?
Working on Batou’s scanner, rules, abstract-syntax-tree analysis, taint tracking, directory scans, findings reports, or Claude Code hooks.
Why use it?
They give an agent the project context needed to place changes correctly and understand how the scanner detects security issues.

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

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

README.md
[![agentmods](https://agentmods.dev/badge/instructions/turenlabs/batou/claude-md.svg)](https://agentmods.dev/instructions/turenlabs/batou/claude-md)
Your own site
<a href="https://agentmods.dev/instructions/turenlabs/batou/claude-md"><img src="https://agentmods.dev/badge/instructions/turenlabs/batou/claude-md.svg" alt="Measured on agentmods" height="20"></a>
Per session 6,718 This file is loaded in full into every session.
When invoked 6,718 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.06718 $0.06718
Opus 5 $0.03359 $0.03359
Sonnet 5 $0.01344 $0.01344
Haiku 4.5 $0.00672 $0.00672

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

Security

Grade A, and why

batou 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 · 275 lines

How it starts

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

Batou - Code guard for your AI agents

Project Overview

Batou is a security scanner that runs as a Claude Code hook, analyzing code for vulnerabilities at write time. It intercepts Write, Edit, and NotebookEdit tool calls via PreToolUse (can block) and PostToolUse (provides hints) hooks.

Architecture

batou-core/cmd/batou/main.go   Entry point — default: reads a Claude Code hook event from stdin, runs the scanner, outputs hints. Also: `batou scan <dir>` (repo scanner) and `batou findings` (findings-cache report)
batou-core/scanner/         Core scan orchestrator (concurrent rule execution + preprocessing)
batou-core/scanner/dirscan/ `batou scan DIR` subcommand: parallel directory walk over a shared in-memory call graph, JSONL or `--sarif` output, `--fail-on` CI gate, cross-file finalize pass
batou-rules/rules/          45 rule categories (751 regex-based rules)
batou-core/ast/             Tree-sitter AST parsing (parser, query, filter, context)
batou-core/analyzer/        Language detection + 16 AST security analyzer packages
batou-core/taint/           Taint types + regex fallback engine (source -> sink tracking with sanitizers)
batou-core/taint/astflow/   Go-specific AST taint walker (uses go/ast, tracks channels/goroutines)
batou-core/taint/ssaflow/   Go SSA taint engine (golang.org/x/tools/go/ssa): def-use chains, cross-function fixpoint summaries, module-local cross-package builds. ON by default; opt out with BATOU_SSAFLOW=0
batou-core/taint/tsflow/    Tree-sitter taint walker (17 language configs; Zig's config is inert — no grammar)
batou-core/taint/languages/ Language-specific taint catalogs (17 languages, 73 files)
batou-core/hints/           Hint generation for Claude feedback (language-specific fix examples)
batou-core/graph/           Persistent call graph + interprocedural analysis
batou-core/hook/            Hook I/O (JSON stdin/stdout, exit codes)
batou-core/reporter/        Result formatting (block messages with CWE/OWASP refs)
batou-core/suppress/        Inline suppression parsing and matching (batou:ignore directives)
batou-core/findings/        Findings persistence + lifecycle tracking (new/recurring/fixed/suppressed)
batou-core/ledger/          Session audit logging
batou-core/testutil/        Test framework helpers

Read the full file on GitHub · 275 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 · 275 lines · 6,718 tokens per session scan A 46af54bc4fdd

Subscribe to this mod's changes

batou CLAUDE.md is an instructions file published in the GitHub repository turenlabs/batou (5 stars, last pushed 1mo ago), licensed MIT. It adds 6,718 tokens to every session, about $0.0336 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-31.