tengu CLAUDE.md

tengu CLAUDE.md is an instructions file for coding agents from rfunix/tengu. It costs 6,055 tokens per session, scanned A, original, MIT.

Project instructions for Tengu, an MCP server that exposes penetration-testing tools to AI assistants through a controlled interface. They describe its Python framework, modules, and request-processing flow.

In plain words
What is it for?
Use them when working on Tengu’s server, validation, logging, tools, resources, prompts, or tests.
Why use it?
They make the security boundaries and required processing stages clear before code is changed.

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

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

README.md
[![agentmods](https://agentmods.dev/badge/instructions/rfunix/tengu/claude-md.svg)](https://agentmods.dev/instructions/rfunix/tengu/claude-md)
Your own site
<a href="https://agentmods.dev/instructions/rfunix/tengu/claude-md"><img src="https://agentmods.dev/badge/instructions/rfunix/tengu/claude-md.svg" alt="Measured on agentmods" height="20"></a>
Per session 6,055 This file is loaded in full into every session.
When invoked 6,055 The same file — it is already loaded in full.
Security scan A 2 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.06055 $0.06055
Opus 5 $0.03027 $0.03027
Sonnet 5 $0.01211 $0.01211
Haiku 4.5 $0.00605 $0.00605

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

Security

Grade A, and why

tengu CLAUDE.md scanned grade A with 2 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.

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

| curl (internal) | `-x` |

Runs shell commandslowCapability

Expected in a hook, worth knowing in a rule or an instructions file.

- Use `asyncio.create_subprocess_exec` (via `run_command`), never `subprocess.run` or `shell=True`.
CLAUDE.md · 662 lines

How it starts

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

CLAUDE.md — Tengu MCP Server

This file is the primary guide for AI assistants (Claude Code and others) working on the Tengu codebase. Read it in full before making any changes.


Project Overview

Tengu is a Model Context Protocol (MCP) server that exposes professional pentesting tools to AI assistants through a clean, secure interface.

Property Value
Framework FastMCP 2.0+
Python 3.12+
Package manager uv (full path: /Users/rfunix/.local/bin/uv)
Validation Pydantic v2
Logging structlog (JSON, structured)
Entry point src/tengu/server.pyFastMCP("Tengu")
Config file tengu.toml at project root
Test suite 2643+ tests, 0 lint errors
Tools 80 MCP tools
Resources 20 MCP resources
Prompts 35 MCP prompts

Architecture

Request Flow

Every tool invocation follows this mandatory pipeline — no exceptions:

Claude (MCP Client)
       │
       ▼
  FastMCP layer          ← receives JSON-RPC call
       │
       ▼
1. sanitizer             ← tengu/security/sanitizer.py
   - Validate input formats (IP, hostname, CIDR, URL, port spec, etc.)
   - Strip/reject shell metacharacters: [;&|`$<>(){}\[\]!\\\'\"\\r\\n]
   - Raise InvalidInputError on any violation
       │
       ▼
2. allowlist             ← tengu/security/allowlist.py
   - Extract hostname from target
   - Check against blocked_hosts (always wins)
   - Check against allowed_hosts (must match if non-empty)
   - Raise TargetNotAllowedError on denial
       │
       ▼
3. rate_limiter          ← tengu/security/rate_limiter.py
   - Sliding window (60s) per tool
   - Concurrent slot limit per tool
   - Raise RateLimitError if either limit is exceeded
       │
       ▼
4. audit logger          ← tengu/security/audit.py
   - Write JSON audit record to logs/tengu-audit.log
   - Redact sensitive parameters (password, token, key, etc.)
   - Log tool name, target, params, result, duration
       │
       ▼
5. executor              ← tengu/executor/process.py
   - asyncio.create_subprocess_exec (NEVER shell=True)
   - Resolve tool path via shutil.which
   - Enforce timeout
   - Return (stdout, stderr, returncode)
       │
       ▼
  Output parser          ← per-tool parsing function
  (XML, JSON, JSONL, plain text)
       │
       ▼
  Return dict to Claude

Read the full file on GitHub · 662 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 · 662 lines · 6,055 tokens per session scan A 23dfade771d9

Subscribe to this mod's changes

tengu CLAUDE.md is an instructions file published in the GitHub repository rfunix/tengu (56 stars, last pushed 2mo ago), licensed MIT. It adds 6,055 tokens to every session, about $0.0303 per session on Opus 5. A static security scan graded it A with 2 findings (makes network calls, runs shell commands). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.