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/kitlangton/behold/agents-mdgit clone --depth 1 https://github.com/kitlangton/beholdWhat 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.01116 | $0.01116 |
| Opus 5 | $0.00558 | $0.00558 |
| Sonnet 5 | $0.00223 | $0.00223 |
| Haiku 4.5 | $0.00112 | $0.00112 |
Grade A, and why
behold 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 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 — 119 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Behold
Behold is a local-first Markdown viewer for presenting agent work, collecting browser comments, and optionally publishing frozen public snapshots.
Architecture
src/App.tsx: Solid viewer and annotation UIsrc/lib/document-viewer.ts: browser Effect v4 HTTP clientshared/document-contracts.ts: shared local API response schemasserver/document-reviews.ts: revisions, comments, feedback cursors, and JSON persistenceserver/document-api.ts: local HTTP and SSE adapterserver/local-viewer.ts: packaged asset and API serverserver/mcp-main.ts: Effect v4 stdio MCP client for the local HTTP APIcloudflare/worker.ts: public Cloudflare Worker serving the built viewer, publish/list/get snapshot API, and published page shells from R2
Vite mounts the local API during development. The packaged daemon serves built assets directly. Both use the same DocumentReviews service, and the MCP process never accesses persistence directly.
Invariants
- Local authoring and public publishing are separate systems.
- The local viewer process is the sole owner of in-memory state, persistence, SSE clients, and long-poll waiters.
- Package root locates executable assets; invocation cwd supplies project
.envand.env.localconfiguration. - Runtime reuse requires matching package, assets, and configuration roots.
- Public snapshots and manifests must never expose local filesystem paths.
- Reposting a
filePathupdates the same hosted document id. - Deleting a local document never deletes an independently published snapshot.
- Hosted documents retain a local publication receipt; startup reconciliation updates its remote status without treating network failure as deletion.
- Document updates retain the current revision plus 20 previous revisions.
wait_for_feedbackcurrently reads and acknowledges feedback in one MCP call.
Agent Surface
MCP tools:
host_documentupdate_documentget_documentlist_documentslist_document_versionsdiff_document_versionswait_for_feedbackset_comment_statusdelete_documentget_agent_guide
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 · 119 lines · 1,116 tokens per session scan A 1ff2adac5e18
behold AGENTS.md is an instructions file published in the GitHub repository kitlangton/behold (11 stars, last pushed 8d ago), licensed MIT. It adds 1,116 tokens to every session, about $0.0056 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
claude-chat-exporter CLAUDE.md
Instructions for agarwalvishal/claude-chat-exporter, covering claude.md, what this is, core design decision, how the export works and the install page & bookmarklet (docs/index.html).
AI-MarkDone copilot-instructions.md
Instructions for zhaoliangbin42/AI-MarkDone, covering ai copy enhance - ai coding agent instructions, project overview, architecture patterns, adapter pattern for multi-platform support and shadow dom isolation.
snag AGENTS.md
Instructions for p3bot/snag, covering agents.md, project overview, setup commands, clone repository and install dependencies.
AI-MarkDone AGENTS.md
Instructions for zhaoliangbin42/AI-MarkDone, covering ai-markdone engineering guide, project facts, read order, common commands and non-negotiables.
markview CLAUDE.md
Instructions for paulhkang94/markview, covering markview — ai development guide, quick reference, architecture, mcp tools (for ai integration) and safety rules.
mdread CLAUDE.md
Instructions for techjewel/mdread, covering claude.md, what this is, commands, architecture and styles (scss).