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.
npx agentmods add instructions/diegosouzapw/omniglyph/claude-mdgit clone --depth 1 https://github.com/diegosouzapw/OmniGlyphWhat 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 | $0.00987 | $0.00987 |
| Opus 5 | $0.00494 | $0.00494 |
| Sonnet 5 | $0.00197 | $0.00197 |
| Haiku 4.5 | $0.00099 | $0.00099 |
Grade A, and why
OmniGlyph 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 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.
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.
How it starts
The opening of the file, as written. The whole thing — 74 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.
Quick Start
pnpm install # install deps
pnpm run build # esbuild bundle → dist/ (Node + Workers entrypoints)
pnpm run typecheck # tsc --noEmit (must be clean)
pnpm test # vitest run — full suite (can take >2 min; run in background)
pnpm run dev:node # local proxy at http://127.0.0.1:47821 (tsx watch)
pnpm run dev:worker # Cloudflare Workers host (wrangler dev)
Focused test runs (preferred while iterating): npx vitest run tests/<file>.test.ts.
Project at a Glance
Context-as-image compression proxy: rewrites bulky LLM request blocks (system prompt, tool docs, old history, large tool outputs) into dense 1-bit PNG pages with exact per-provider billing math. Only converts when the math wins, and only for models that passed the reading benchmark (fail-closed gate).
| layer | where | what |
|---|---|---|
| Core | src/core/ |
transform pipeline, exact billing (anthropic-vision.ts, gemini-model-profiles.ts), render cache, proxy logic |
| Render | src/core/render* + assets/ |
1-bit 5×8 glyph atlas (Spleen/Unifont-derived), reflow, PNG pages |
| Hosts | src/node.ts · src/worker.ts |
local Node server (dashboard + events) · Cloudflare Workers |
| Public API | src/core/index.ts |
billing math re-exported at package root (consumed by OmniRoute) |
| Benchmarks | benchmarks/ |
billing-sweep + density-frontier harnesses; JSONL receipts in */results/ |
| Tests | tests/ |
vitest; includes docs-integrity (link rot + rebrand guard) |
Key Conventions
- Strict TDD: write the failing test first, watch it fail for the right reason, then the minimal implementation. No production code without a test.
- Measurement before claims: any number in docs/README must have a receipt
in
benchmarks/*/results/. Measured decisions (seedocs/benchmarks/BENCHMARKS.md) are not re-litigated without new data. - TypeScript strict, ESM only (
.jsimport suffixes in TS source). - Comments state constraints the code can't show — not narration.
- User-facing brand strings are
OmniGlyph; binary/env prefix isomniglyph/OMNIGLYPH_*; data in~/.omniglyph/, config in~/.config/omniglyph/.
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 First seen · 74 lines · 987 tokens per session scan A d02e9ddaa44f
OmniGlyph CLAUDE.md is an instructions file published in the GitHub repository diegosouzapw/OmniGlyph (104 stars, last pushed 7d ago), licensed MIT. It adds 987 tokens to every session, about $0.0049 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.
Other instructions, from other repositories
tokenfold AGENTS.md
Instructions for snchimata/tokenfold, covering repository guidelines, working principles, repository map, implementation conventions and validation.
distil CLAUDE.md
Claude Code instructions for munhq/distil, covering distil — context optimization for llm agents, what this is, consumption modes, architecture and layers (src/layers/).
densely CLAUDE.md
Instructions for alibaizhanov/densely: Behavioral guidelines to reduce common LLM coding mistakes. Merge with project-specific instructions as needed.
DeepSpeed AGENTS.md
AGENTS.md instructions for deepspeedai/DeepSpeed, covering deepspeed project rules, commit & ci requirements, code change discipline, tool caveats and edit tool auto-formatter.
AionUi AGENTS.md
Instructions for iOfficeAI/AionUi, covering aionui - project guide, code conventions, file & directory structure, naming and ui library & icons.
botmux CLAUDE.md
Instructions for deepcoldy/botmux, covering botmux, 构建 & 运行, bun 开发链路, worktree 的 nodemodules:共享还是独立(改前必读) and 编译态(单文件二进制)注意.