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/crisogray/claudius/agents-mdgit clone --depth 1 https://github.com/crisogray/claudiusWhat 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.02209 | $0.02209 |
| Opus 5 | $0.01104 | $0.01104 |
| Sonnet 5 | $0.00442 | $0.00442 |
| Haiku 4.5 | $0.00221 | $0.00221 |
Grade A, and why
claudius AGENTS.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 — 284 lines — stays where its author put it; the contents beside it link to each section on GitHub.
ADE: Agent Development Environment
Fork of OpenCode focused on desktop app development.
Architecture
Package Structure
packages/
desktop/ # Tauri v2 shell, sidecar management
app/ # SolidJS frontend, context providers, pages
opencode/ # Agent server, tools, snapshots (runs as sidecar)
ui/ # Shared components, themes, @pierre/diffs integration
sdk/ # Auto-generated API client, SSE events
util/ # Helpers (encoding, binary search, retry)
Desktop App (packages/desktop)
Tauri v2 app that wraps the frontend and manages the opencode CLI as a sidecar:
src-tauri/src/lib.rs- Main app logic, sidecar spawning, window creationsrc-tauri/src/cli.rs- CLI installation/sync to~/.opencode/bin/opencodesrc/index.tsx- Entry point, renders app insideServerGate
Sidecar flow:
Tauri app starts
-> spawn_sidecar("opencode serve --port={port}")
-> inject port via window.__OPENCODE__
-> frontend connects via HTTP/SSE to localhost:{port}
Tauri commands: kill_sidecar, install_cli, ensure_server_started
App Package (packages/app)
SolidJS frontend with nested context providers:
PlatformProvider (web vs desktop abstraction)
ServerProvider (connection management)
GlobalSDKProvider (SDK client + global events)
GlobalSyncProvider (projects, providers state)
Router
Layout (sidebar, navigation)
DirectoryLayout (per-directory scope)
SDKProvider, SyncProvider (directory-scoped)
LocalProvider (model, agent, files)
TerminalProvider, FileProvider, PromptProvider
Session page
Key files:
src/pages/layout.tsx- Sidebar with projects/sessions, drag-drop reorderingsrc/pages/session.tsx- Main work surface: messages, prompt input, review tabssrc/context/sync.tsx- State management, SSE event handling
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 · 284 lines · 2,209 tokens per session scan A ecb9de15990e
claudius AGENTS.md is an instructions file published in the GitHub repository crisogray/claudius (91 stars, last pushed 6mo ago), licensed Apache-2.0. It adds 2,209 tokens to every session, about $0.0110 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
plannotator AGENTS.md
AGENTS.md instructions for backnotprop/plannotator, covering plannotator, project structure, server runtimes, installation and environment variables.
golembot CLAUDE.md
Instructions for 0xranx/golembot, covering golembot — project conventions for claude code, architecture hard constraints, things you must never do, interface change rules and file responsibility boundaries.
solo AGENTS.md
Instructions for solo-agent/solo, covering project testing rules and project service lifecycle rules.
OpenCode-GraphAgent CLAUDE.md
Instructions for LeXwDeX/OpenCode-GraphAgent, covering claude.md, what this is, commands, quality gates and build & codegen.
superset CLAUDE.md
Claude Code instructions for superset-sh/superset, a project described as: Superset is an agentic IDE to orchestrate 100+ coding agents in parallel. Run any agent with your own subscription.
awesome-copilot-id AGENTS.md
Instructions for GulajavaMinistudio/awesome-copilot-id, covering communication, explanation and documentation, markdown formatting, user communication style and workflow & methodology.