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/maxghenis/openmessage/claude-mdgit clone --depth 1 https://github.com/MaxGhenis/openmessageWhat 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.02855 | $0.02855 |
| Opus 5 | $0.01427 | $0.01427 |
| Sonnet 5 | $0.00571 | $0.00571 |
| Haiku 4.5 | $0.00285 | $0.00285 |
Grade A, and why
openmessage CLAUDE.md scanned grade A with 1 finding 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.
Makes network callslowCapability
Not a fault in itself. Listed so you know the mod talks to something, and to what.
curl -s -o /dev/null -w "%{http_code}" https://openmessage.ai How it starts
The opening of the file, as written. The whole thing — 226 lines — stays where its author put it; the contents beside it link to each section on GitHub.
OpenMessage
Local-first universal message database with built-in MCP server. Ingests messages from SMS/RCS (Google Messages), Google Chat, iMessage, and WhatsApp.
Architecture
├── cmd/ Go CLI commands (pair, serve, send, read, status, import)
├── internal/
│ ├── app/ Bootstrap, data dir, backfill
│ ├── client/ libgm Google Messages protocol
│ ├── db/ SQLite store (conversations, messages, contacts, unified_contacts, drafts)
│ ├── importer/ Multi-platform import adapters (gchat, imessage, whatsapp)
│ ├── story/ Stats computation + narrative story generation
│ ├── tools/ MCP tools (24 tools)
│ ├── viz/ Relationship visualization renderer (self-contained HTML)
│ └── web/ HTTP API + embedded React UI
├── macos/ Swift macOS app wrapper
│ ├── OpenMessage/ Swift package (BackendManager, PairingView, etc.)
│ └── build.sh Builds universal binary + .app + .dmg
├── site/ Static website (deployed to openmessage.ai)
└── vercel.json Vercel config (root — NOT site/vercel.json)
Supporting a live install (READ FIRST for support/debug tasks)
If you are debugging a real user's install — sends failing, re-pairing, reading their actual messages — read docs/agent-runbook.md before touching anything. The traps that cost the most:
- Two data dirs, not one. The macOS app's live store is
~/Library/Application Support/OpenMessage/(set viaOPENMESSAGES_DATA_DIR). The CLI default (~/.local/share/openmessage/) is a separate, usually stale store. Point CLI tools at the app dir for live data. - Read live messages via the HTTP API (
/api/conversations/<id>/messages,/api/search,/api/status) — the app holds the WAL'd DB, so a directsqlite3reader hits "unable to open database file (14)". - Re-pairing Google Messages: QR is dead; use Google Account pairing via the
cookie method; clear
session.jsonfrom both data dirs to reach the pairing screen; don't over-reconnect (it throttles the account). Full recipe in the runbook.
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 · 226 lines · 2,855 tokens per session scan A 3289f271f71a
openmessage CLAUDE.md is an instructions file published in the GitHub repository MaxGhenis/openmessage (52 stars, last pushed 8d ago), licensed Unlicense. It adds 2,855 tokens to every session, about $0.0143 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other instructions, from other repositories
personal-model AGENTS.md
Instructions for Intuition-Lab/personal-model, covering agents.md, runtime boundary, commands, pipeline and documentation map.
humla CLAUDE.md
Instructions for michaelwilhelmsen/humla, covering humla — project notes, what this app is, core capabilities, architecture overview and data flow during a recording.
os-clovy AGENTS.md
Instructions for open-software-network/os-clovy, covering clovy — agent instructions, project, os platform (shared brain), structure and domain & decisions — read before writing code.
humla AGENTS.md
Instructions for michaelwilhelmsen/humla, covering humla — project notes, what this app is, core capabilities, architecture overview and data flow during a recording.
personal-model CLAUDE.md
Instructions for Intuition-Lab/personal-model: Read and follow AGENTS.md. It is the single agent orientation for this repository: Runtime boundary, commands, architecture, invariants, current documentation, privacy rules, and DCO workflow.
Starcat AGENTS.md
Instructions for starcat-app/Starcat, covering agents.md, 🚨 硬性铁律(每次写代码前必读,违反即返工), 🌿 git 分支与 worktree(强制), 🧭 主进度索引(每次开工前必读) and 状态符号(与功能实现总览.md 同步).