Borrowing it
Nothing to install: this file belongs to LembaGang/headless-oracle-v5. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.
curl -O https://raw.githubusercontent.com/LembaGang/headless-oracle-v5/main/CLAUDE.mdgit clone --depth 1 https://github.com/LembaGang/headless-oracle-v5Wrote 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.
[](https://agentmods.dev/instructions/lembagang/headless-oracle-v5/claude-md)<a href="https://agentmods.dev/instructions/lembagang/headless-oracle-v5/claude-md"><img src="https://agentmods.dev/badge/instructions/lembagang/headless-oracle-v5/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.
<a href="https://agentmods.dev/instructions/lembagang/headless-oracle-v5/claude-md"><img src="https://agentmods.dev/badge/instructions/lembagang/headless-oracle-v5/claude-md.svg" alt="Reviewed on agentmods" width="80" height="20"></a>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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.10094 | $0.10094 |
| Opus 5 | $0.05047 | $0.05047 |
| Sonnet 5 | $0.02019 | $0.02019 |
| Haiku 4.5 | $0.01009 | $0.01009 |
Grade E, and why
headless-oracle-v5 CLAUDE.md scanned grade E with 3 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 yesterday.
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.
Reaches for credential fileshighPrivilege escalation
SSH keys, cloud credentials, git-credentials, .npmrc, /etc/shadow: reading these is how a config file becomes a credential leak.
- **Commit signing.** Sign commits with the SSH signing key at `~/.ssh/id_ed25519_signing`. Already configured globally — no per-commit setup needed. Recursive force deletehighDestructive command
rm -rf with a variable or a broad path is one typo away from removing the wrong tree.
- `rm -rf` operations Makes network callslowCapability
Not a fault in itself. Listed so you know the mod talks to something, and to what.
- **Routing**: Worker catch-all on `headlessoracle.com/*`; API paths handled directly, HTML paths forwarded to Pages via `fetch(request)` How it starts
The opening of the file, as written. The whole thing — 597 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Headless Oracle V5
Headless Oracle is a Cloudflare Worker that returns Ed25519-signed market-state attestations for 28 global exchanges. It answers one question: "Is this exchange open right now?" Every response is cryptographically signed. UNKNOWN = CLOSED (fail-closed). Revenue: x402 micropayments ($0.001 USDC on Base), API keys (free 500/day, paid tiers via Paddle), free trial (3 signed receipts/day/IP).
Operational Defaults (Solo Founder Repo)
Auto-approved — no confirmation needed:
- Auto-deploy after all tests pass
- Push directly to main — no PR required
- File edits, test runs, npm installs
- Cloudflare deployments when tests pass
- New endpoint additions
- Documentation updates
Still requires explicit confirmation in the message:
git push --forcerm -rfoperations- Secret rotation or credential changes
- Anything that permanently deletes existing data
Architecture in 30 Seconds
- Single TypeScript file:
src/index.ts(~12,400 lines) - Runtime: Cloudflare Workers (edge, no origin server) — API only, zero HTML
- HTML: Served by Cloudflare Pages via
headless-oracle-webrepo - Routing: Worker catch-all on
headlessoracle.com/*; API paths handled directly, HTML paths forwarded to Pages viafetch(request)
- KV namespaces:
ORACLE_TELEMETRY(metrics/usage),ORACLE_API_KEYS(auth + billing state),ORACLE_OVERRIDES(manual halt overrides) - Signing: Ed25519 via
@noble/ed25519with CryptoKey cached in module scope - MCP server: POST
/mcp(protocol2024-11-05, streamable HTTP, 5 tools) - Payments: x402 via Coinbase CDP facilitator on Base mainnet
- Billing: Paddle (subscriptions + credit packs), keys stored in Supabase + KV cache
- Conversion:
/v5/keys/instantinstant key provisioning, enhanced 402/429 withagent_upgrade_paths, funnel telemetry - Email: Resend for key delivery
- Durable Objects:
StreamCoordinator(SSE),WebhookDispatcher(state-change fan-out) - OpenAPI: 78 paths in
/openapi.json(11 semantic tags, 2 server URLs, MIT license) - SDKs:
packages/sdk-typescript/(@headlessoracle/sdk),packages/sdk-python/(headless-oracle-sdk) — not yet published - Published packages:
headless-oracle-mcp(npm),headless-oracle(PyPI), framework SDKs (LangChain, CrewAI, Strands)
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.
- yesterday Changed · +278 lines · +1,733 tokens per session 9fe20ca91cb1
- 9d ago First seen · 319 lines · 8,361 tokens per session scan E bbaad101520a
headless-oracle-v5 CLAUDE.md is an instructions file published in the GitHub repository LembaGang/headless-oracle-v5 (0 stars, last pushed yesterday), licensed MIT. It adds 10,094 tokens to every session, about $0.0505 per session on Opus 5. A static security scan graded it E with 3 findings (reaches for credential files, recursive force delete, makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.
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.
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.
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).
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).
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.
deepseek-harness AGENTS.md
AGENTS.md instructions for deepseek-ai/deepseek-harness, covering agents.md, pre-stable apis and released session data, repository layout, commands and host sandbox failures.