audit-event-mcp: Instructions file for Claude Code

CLAUDE.md

audit-event-mcp CLAUDE.md is an instructions file for Claude Code from mightbesaad/audit-event-mcp. It costs 2,188 tokens per session, scanned A, original, MIT.

Repository-specific instructions for Claude Code in an audit-event-mcp project. The project records tamper-evident audit events for governance and compliance using Cloudflare services.

In plain words
What is it for?
Use them before making substantial structural changes to that repository, especially changes involving storage, deployments, or audit records.
Why use it?
They preserve documented architectural decisions and require careful handling of changes in a system that may be reviewed by regulators or compliance teams.

Instructions file for Claude Code

Written for Claude Code: the file is CLAUDE.md. Also seen: mentions CLAUDE.md; mentions Claude Code.

This is mightbesaad/audit-event-mcp's own configuration. It tells Claude Code how to work on audit-event-mcp itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything audit-event-mcp configures →

Reuse

Borrowing it

Nothing to install: this file belongs to mightbesaad/audit-event-mcp. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.

Copy the file
curl -O https://raw.githubusercontent.com/mightbesaad/audit-event-mcp/main/CLAUDE.md
Clone the repo
git clone --depth 1 https://github.com/mightbesaad/audit-event-mcp

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 audit-event-mcp CLAUDE.md

README.md
[![agentmods](https://agentmods.dev/badge/instructions/mightbesaad/audit-event-mcp/claude-md/github.svg)](https://agentmods.dev/instructions/mightbesaad/audit-event-mcp/claude-md)
Your own site
<a href="https://agentmods.dev/instructions/mightbesaad/audit-event-mcp/claude-md"><img src="https://agentmods.dev/badge/instructions/mightbesaad/audit-event-mcp/claude-md/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for audit-event-mcp CLAUDE.md

Your own site · 80×15
<a href="https://agentmods.dev/instructions/mightbesaad/audit-event-mcp/claude-md"><img src="https://agentmods.dev/badge/instructions/mightbesaad/audit-event-mcp/claude-md.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 2,188 This file is loaded in full into every session.
When invoked 2,188 The same file — it is already loaded in full.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
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.02188 $0.02188
Opus 5 $0.01094 $0.01094
Sonnet 5 $0.00438 $0.00438
Haiku 4.5 $0.00219 $0.00219

Measured 10d ago against content hash e1d1e38190b5, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-10, from the pricing page.

Security

Grade A, and why

audit-event-mcp 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 10d 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 · 110 lines

How it starts

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

CLAUDE.md — @kajaril/audit-event-mcp

This file is the constitution for Claude Code working in this repo. Read it before any non-trivial change.


What this repo is

@kajaril/audit-event-mcp is agent steward infrastructure: a hash-chained audit log backed by a Cloudflare Durable Object, with optional Merkle notarisation and a GDPR/AI-Act compliance skill. MIT-licensed.

This is a governance product. Every decision in the codebase is on the record. DPO buyers and regulators will read this code.

Required reading before structural changes

  1. .context/kajaril-source-of-truth.md — strategy, stack, roadmap
  2. .context/kajaril-decisions-addendum-wk0.md — entity-level locked decisions
  3. .context/audit-event-mcp-build-plan.md — this repo's build plan + all locked decisions

These live in the workspace .context/ folder, not in this repo. Deviating from any locked decision requires stopping, asking, and recording the new decision before code changes.

Locked decisions

  1. Two Workerswrangler.jsonc (main) + wrangler.notary.jsonc (notary). They are independent deployments. Never merge them into one config.
  2. DO SQLite, not D1state.storage.sql.exec() is the API. Never add a D1 binding to this repo.
  3. new_sqlite_classes, not new_classes — Wrangler migration tag for SQLite-enabled DOs. Do not change.
  4. Shared R2 bucket — one audit-payloads bucket, per-client isolation via {client_id}/{event_id} key prefix in do.ts. Never per-client buckets.
  5. CF Access JWT routing — Worker reads payload.custom.client_id from the CF Access JWT; DO name = audit-do-{client_id}. Never use URL segments for client routing.
  6. Hash chain algorithm — locked. input_hash_slot = input_hash ?? input_hash_omitted_reason. Never empty string. chain_hash = SHA-256(id + "|" + event_type + "|" + input_hash_slot + "|" + (prev_hash ?? "")). Do not change without a new decision entry.
  7. Six MCP tools exactlyrecord_event, verify_chain, query_events, export_dossier, request_approval, check_approval. Was four; widened by the witness integration decision (kajaril-witness-integration-draft.md §3, Day 3, 2026-06-12). Do not add tools without a new decision.
  8. payload_ref never returned — tool responses never include payload_ref keys or raw payload content. This is a privacy invariant.
  9. NOTARY_PRIVATE_KEY is a Workers Secret — set via wrangler secret put, never in source, comments, or commits.
  10. migrations/0001_init.sql is applied by do.ts — the DO constructor calls state.storage.sql.exec(SCHEMA_SQL). Never apply via wrangler d1 migrations apply.
  11. License + metadata — MIT. package.json author, repository, homepage, bugs are locked.
  12. EU jurisdiction pin (2026-07-10) — every tenant DO is created via env.AUDIT_DO.jurisdiction("eu") before .idFromName(...), never the raw binding. All three call sites (src/index.ts, src/lib/approval-flow.ts, src/lib/audit-log.ts) must agree — a client whose ID is ever derived without the jurisdiction call would resolve to a different DO than one derived with it, silently splitting that tenant's chain in two. The R2 side needed no code change: AUDIT_PAYLOADS binding now points at audit-payloads-eu (created via wrangler r2 bucket create audit-payloads-eu --jurisdiction eu) instead of the original non-jurisdictional audit-payloads bucket — binding name unchanged, so nothing in do.ts/main.ts had to change. Decided with zero pilot clients on the old bucket/namespace, so no data migration was needed; if that's no longer true when this is read, check first.

Read the full file on GitHub · 110 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. 10d ago First seen · 110 lines · 2,188 tokens per session scan A e1d1e38190b5

Subscribe to this mod's changes

audit-event-mcp CLAUDE.md is an instructions file published in the GitHub repository mightbesaad/audit-event-mcp (2 stars, last pushed 2mo ago), licensed MIT. It adds 2,188 tokens to every session, about $0.0109 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.

Related

Other instructions, from other repositories

next.js AGENTS.md

AGENTS.md instructions for vercel/next.js, covering next.js development guide, codebase structure, monorepo overview, core package: packages/next and other important packages.

vercel/next.js · 7,296 tokens

codex AGENTS.md

AGENTS.md instructions for openai/codex, covering rust/codex-rs, the codex-core crate, code review rules, crate api surface and model visible context.

openai/codex · 5,153 tokens

vscode buildNext.instructions.md

Working notes and architecture documentation for the new esbuild-based build system in build/next. Use when making changes to the new build pipeline (transpile/bundle commands, NLS plugin, source-map handling, resource copying, or self-hosting watch tasks).

microsoft/vscode · 6,785 tokens

spec-kit AGENTS.md

AGENTS.md instructions for github/spec-kit, covering agents.md, about spec kit and specify, quickstart — add a new integration in 5 steps, integration architecture and integrationmanifest — file tracking.

github/spec-kit · 7,104 tokens

vscode oss-third-party-notices.instructions.md

Instructions for microsoft/vscode, covering vs code oss third-party-notices pipeline, architecture, pipeline flow in ci, applying the notice (cutover) and fallback chain (never fail the build).

microsoft/vscode · 5,001 tokens

langchain AGENTS.md

AGENTS.md instructions for langchain-ai/langchain, covering global development guidelines for the langchain monorepo, corridor security analysis, project architecture and context, monorepo structure and development tools & commands.

langchain-ai/langchain · 4,469 tokens