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/rivet-dev/actors/claude-mdgit clone --depth 1 https://github.com/rivet-dev/actorsWhat 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.10527 | $0.10527 |
| Opus 5 | $0.05264 | $0.05264 |
| Sonnet 5 | $0.02105 | $0.02105 |
| Haiku 4.5 | $0.01053 | $0.01053 |
Grade A, and why
actors 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 2d 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 — 398 lines — stays where its author put it; the contents beside it link to each section on GitHub.
CLAUDE.md
Design constraints, invariants, and reference commands for the Rivet monorepo. For implementation details, wiring, and procedural gotchas, follow the links under Reference Docs.
Terminology
Always spell the product name agentOS, never AgentOS; do not alter type identifiers such as AgentOSActorConfig.
ALWAYS use rivet.dev - NEVER use rivet.gg
- API endpoint:
https://api.rivet.dev - Cloud API endpoint:
https://cloud-api.rivet.dev - Dashboard:
https://dashboard.rivet.dev - Documentation:
https://rivet.dev/docs
Use "sandbox mounting" when referring to the agentOS sandbox integration. Do not use "sandbox extension" or "sandbox escalation." The feature mounts a sandbox as a filesystem inside the VM.
ALWAYS use github.com/rivet-dev/rivet - NEVER use rivet-dev/rivetkit or rivet-gg/*
Never modify an existing published *.bare runner protocol version unless explicitly asked to do so.
- Add a new versioned schema instead, then migrate
versioned.rsand related compatibility code to bridge old versions forward. - When bumping the protocol version, update
PROTOCOL_MK2_VERSIONinengine/packages/runner-protocol/src/lib.rsandPROTOCOL_VERSIONinrivetkit-typescript/packages/engine-runner/src/mod.tstogether. Both must match the latest schema version.
Always use versioned BARE (vbare) instead of raw serde_bare for any persisted or wire-format encoding unless explicitly told otherwise. Raw serde_bare::to_vec / from_slice has no version header, so any future schema change forces hand-rolled LegacyXxx fallback structs. vbare::OwnedVersionedData plus a versioned *.bare schema is the standard pattern. Acceptable raw-bare exceptions: ephemeral in-memory encodings that never cross a process boundary or hit disk, and wire formats whose protocol version is coordinated out-of-band (e.g. an HTTP path like /v{PROTOCOL_VERSION}/... or another channel that pins both peers to one schema per call).
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.
- 2d ago First seen · 398 lines · 10,527 tokens per session scan A 195f26bd4d50
actors CLAUDE.md is an instructions file published in the GitHub repository rivet-dev/actors (6,099 stars, last pushed today), licensed Apache-2.0. It adds 10,527 tokens to every session, about $0.0526 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
vibesdk AGENTS.md
AGENTS.md instructions for cloudflare/vibesdk, covering agents.md, tooling, verification, frontend ui and frontend data fetching.
vibedgames AGENTS.md
AGENTS.md instructions for kyh/vibedgames, covering agents.md, quickstart (headless), environment, seeded logins and a real session cookie, for handing to a browser context.
vibedgames CLAUDE.md
Claude Code instructions for kyh/vibedgames, covering agent instructions, agent-driven development, what this is, product & business context and key architectural decisions.
liveblocks AGENTS.md
AGENTS.md instructions for liveblocks/liveblocks, covering project structure, bash commands, code style, dependencies and code quality.
munkel CLAUDE.md
Instructions for limehq/munkel, covering claude.md, monorepo layout, commands, macos development specifics and deploy.
mithai CLAUDE.md
Instructions for last9/mithai, covering claude.md, what is mithai, common commands, install dependencies (uses uv) and run all tests.