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/duyet/oma/claude-mdgit clone --depth 1 https://github.com/duyet/omaWhat 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.01471 | $0.01471 |
| Opus 5 | $0.00736 | $0.00736 |
| Sonnet 5 | $0.00294 | $0.00294 |
| Haiku 4.5 | $0.00147 | $0.00147 |
Grade A, and why
oma 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 3d 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.
How it starts
The opening of the file, as written. The whole thing — 52 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.
What this is
Open-source, self-hostable reimplementation of the Claude Managed Agents API. A meta-harness: the platform (a SessionDO Durable Object) prepares what an agent has (tools, skills, history, sandbox, credentials); a harness decides how to drive the model loop. The same business logic runs two ways — Cloudflare (Workers + Durable Objects + Containers) and self-hosted Node (docker compose). pnpm monorepo (apps/*, packages/*).
The domain model, tool catalog, event types, harness API, and release process live in the imported @AGENTS.md below — don't restate them here.
Commands
- Install:
pnpm install(pnpm 11, Node ≥20). pnpm 11 hard-fails install if a native dependency isn't listed underallowBuilds:inpnpm-workspace.yaml. - Dev (Cloudflare simulators):
pnpm dev— API on:8787, Console on:5173. - Typecheck:
pnpm typecheck— roottsc --noEmitplus a separate node-only pass (typecheck:node); node packages are excluded from the roottsc. - Test:
pnpm test— runs three suites in sequence (all required): rootvitest run(Cloudflare Workers pool) →test:packages→test:console. - Single test (workers pool):
pnpm vitest run path/to/file.test.ts -t "case name". - Single test (node-pool package):
pnpm --filter @duyet/oma-session-runtime test -- run <file> -t "name".
Gotchas that will bite you
typecheckandtestboth gate PRs..github/workflows/ci.ymlruns both jobs on every PR and both block merge — a red test job is not advisory. Runpnpm typecheck && pnpm testlocally before every push (or use/preflight) so CI doesn't catch it for you.- The vitest suite is split by pool. Root
vitest runuses@cloudflare/vitest-pool-workers. Node-native packages ship their ownvitest.config.tswithpool: "threads"and run only viapnpm --filter <pkg> test, excluded from the root run via itstest.excludelist.test:packageswires up 10 of them:session-runtime,main-node,cap,integrations-adapters-node,sandbox,k8s-bridge,browser-harness,observability,vault-forward, and@getoma/cli. That is whypnpm testchains three commands. Adding a new node-pool package means wiring it intotest:packagesand the rootexcludelist — miss the second and its tests run twice, once in the wrong pool. - Internal
@duyet/oma-*packages have no build step — they ship raw.ts(main/exportspoint atsrc/*.ts), resolved via workspace links plus a hand-maintained alias wall invitest.config.ts. Adding a new package subpath may need a new alias entry there, or workers-pool tests won't resolve it. Only@getoma/cliand@getoma/sdkhave a build. - Harnesses register by name in
apps/agent/src/index.ts(registerHarness("default", …)); an agent selects one viaharness: "<name>". The seam isapps/agent/src/harness/interface.ts. Use/new-harnessto add one. - The prompt cache is byte-sensitive.
deriveModelContextoutput must be byte-deterministic and<system-reminder>injections must sit in the cached prefix — any drift silently invalidates Anthropic's cache. See the contract comments inharness/interface.ts. - Model provider resolution is in
apps/agent/src/harness/provider.ts— branches onApiCompat(ant/ant-compatible/oai/oai-compatible); the OpenAI-compat path uses/chat/completions, never the Responses API. SessionDO(apps/agent/src/runtime/session-do.ts) is the per-session Durable Object: append-only event log (DO-SQLite), streaming lifecycle, crash recovery. Streaming chunk/thinking/tool-input events are broadcast-only; the finalagent.*event is the persisted record.- Credentials never enter the sandbox — injected by an outbound proxy; MCP calls proxy through the main worker. Don't add code paths that hand plaintext credentials to the agent DO.
- Pagination: every paginated table exposes
created_at+id, ordered(created_at, id) DESC; cursors are opaque and a stale cursor silently restarts from page 1. Helpers inpackages/shared/src/pagination.ts.
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.
- 3d ago First seen · 52 lines · 1,471 tokens per session scan A 68144bbc3d3b
oma CLAUDE.md is an instructions file published in the GitHub repository duyet/oma (5 stars, last pushed 14d ago), licensed Apache-2.0. It adds 1,471 tokens to every session, about $0.0074 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.
Other instructions, from other repositories
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).
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.
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.
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.
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).
next.js AGENTS.md
Instructions for vercel/next.js, covering next.js development guide, codebase structure, monorepo overview, core package: packages/next and other important packages.