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/keshrath/agent-comm/claude-mdgit clone --depth 1 https://github.com/keshrath/agent-commWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/instructions/keshrath/agent-comm/claude-md)<a href="https://agentmods.dev/instructions/keshrath/agent-comm/claude-md"><img src="https://agentmods.dev/badge/instructions/keshrath/agent-comm/claude-md.svg" alt="Measured on agentmods" height="20"></a>What 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.01143 | $0.01143 |
| Opus 5 | $0.00571 | $0.00571 |
| Sonnet 5 | $0.00229 | $0.00229 |
| Haiku 4.5 | $0.00114 | $0.00114 |
Grade A, and why
agent-comm 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 4d 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 — 73 lines — stays where its author put it; the contents beside it link to each section on GitHub.
agent-comm
Architecture
Layered architecture with explicit dependency injection (no global state):
src/
domain/ agents, channels, messages, state, feed, cleanup, rate-limit, events
storage/ SQLite (better-sqlite3, WAL mode)
transport/ REST (node:http), WebSocket (ws), MCP (stdio)
ui/ Vanilla JS dashboard (no build step for UI)
- No frameworks — no React, Vue, Express. Pure Node.js + TypeScript.
context.tsis the DI root — wires all services together.- UI files (
index.html,app.js,styles.css) are plain files copied todist/ui/on build.
UI / Dashboard
- Icons: Material Symbols Outlined (via Google Fonts CSS). No emojis.
- Fonts: Inter (UI text), JetBrains Mono (code/data)
- Theme: Light/dark toggle via
.theme-light/.theme-darkclass on<body> - Design tokens: CSS custom properties (
--bg,--accent,--border,--shadow-*, etc.) - Accent color:
#5d8da8 - Radii: 12px cards, 16px panels, 8px small elements
- Section headers: Uppercase, 13px, weight 600, letter-spacing 0.5px
- Empty states: Material Symbols icon (block, centered) + text + optional hint
Code Style
- ESLint + Prettier enforced via lint-staged (husky pre-commit)
Versioning
- Version lives in
package.jsonand is read at runtime (REST/health, WS state payload, UI sidebar) - Never hardcode version strings
- Every commit must bump the patch version minimum
- Commit message format:
v1.0.x: short description
Build & Test
npm run build # tsc + copy UI files to dist/
npm test # vitest (unit + integration + e2e)
npm run check # typecheck + lint + format + test
npm run dev # watch mode (tsc + nodemon)
Key APIs
- REST:
GET /health,GET /api/agents,GET /api/messages,GET /api/channels,GET /api/state,GET /api/feed,POST /api/cleanup/stale,POST /api/cleanup/full,POST /api/state/:ns/:key/cas(atomic compare-and-swap, used by the file-coord hook) - WebSocket: Full state on connect, incremental events streamed,
refreshrequest supported - MCP: 7 tools (
comm_register,comm_agents,comm_send,comm_inbox,comm_poll,comm_channel,comm_state).comm_inboxaccepts animportancefilter;comm_pollblocks onmessage:sentuntil a matching message arrives (or timeout). Full-text search (FTS5) is available via REST (GET /api/messages/search) for the dashboard's human-facing search bar — agents usecomm_inboxwith filters instead. Activity feed is auto-emitted internally on all actions (no MCP tool needed).
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.
- 4d ago First seen · 73 lines · 1,143 tokens per session scan A 95c2fe519c52
agent-comm CLAUDE.md is an instructions file published in the GitHub repository keshrath/agent-comm (5 stars, last pushed 4mo ago), licensed MIT. It adds 1,143 tokens to every session, about $0.0057 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
CLITrigger CLAUDE.md
Claude Code instructions for HyperAITeam/CLITrigger, covering claude.md, project overview, commands, development (runs server + client concurrently) and build.
codex-pets AGENTS.md
Instructions for astandrik/codex-pets, covering agents.md, commands (verified), workflow, file map and golden samples (follow these patterns).
libtmux-mcp AGENTS.md
AGENTS.md instructions for tmux-python/libtmux-mcp, covering agents.md, what is here, which policy applies, change discipline and references.
dibs AGENTS.md
AGENTS.md instructions for Agenxy/dibs, covering agents.md: orientation for agents working on dibs, what this repo is, layout, rules you must not break and working here.
agentcrew-dev-skills AGENTS.md
AGENTS.md instructions for okqixiaobao727-design/agentcrew-dev-skills, covering agents.md and validating your work.
SuperAgenticMCP AGENTS.md
AGENTS.md instructions for ANAMIZED/SuperAgenticMCP, covering agents.md — superagenticmcp, what this project is, how to run & verify, hard rules for agents and surfaces that must stay working.