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/leancoderkavy/meepo/agents-mdgit clone --depth 1 https://github.com/leancoderkavy/meepoWrote 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/leancoderkavy/meepo/agents-md)<a href="https://agentmods.dev/instructions/leancoderkavy/meepo/agents-md"><img src="https://agentmods.dev/badge/instructions/leancoderkavy/meepo/agents-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.01304 | $0.01304 |
| Opus 5 | $0.00652 | $0.00652 |
| Sonnet 5 | $0.00261 | $0.00261 |
| Haiku 4.5 | $0.00130 | $0.00130 |
Grade A, and why
meepo 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 5d 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 — 121 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Meepo — Agent Guidelines
Instructions for AI coding agents (Windsurf Cascade, Claude Code, Cursor, Copilot, etc.) working on this codebase.
Build & Verify
cargo build # Must pass before committing
cargo test --workspace # 167+ tests across 5 crates
cargo clippy --workspace # No warnings allowed
Always run cargo check after edits to catch compile errors early.
Project Overview
Meepo is a local AI agent (Rust, macOS/Windows) that connects Claude to your digital life via Discord, Slack, iMessage, email, and more. It runs as a daemon with an autonomous observe/think/act loop, 75+ tools, MCP/A2A protocol support, and a persistent knowledge graph.
Workspace: 7 crates in crates/ — see Cargo.toml for the full list.
| Crate | Role |
|---|---|
meepo-cli |
Binary, CLI commands, daemon startup, config, templates |
meepo-core |
Agent loop, API client, tools, orchestrator, autonomy, platform abstraction |
meepo-channels |
Message bus + channel adapters (Discord, Slack, iMessage, email, Alexa, etc.) |
meepo-knowledge |
SQLite + Tantivy knowledge graph |
meepo-scheduler |
Watcher runner and persistence |
meepo-mcp |
MCP server/client (STDIO JSON-RPC) |
meepo-a2a |
A2A protocol server/client (HTTP) |
Key Files
crates/meepo-cli/src/main.rs— Daemon startup, tool registration, event loop (~3000 lines). Tools are registered in bothcmd_start()andcmd_mcp_server().crates/meepo-cli/src/config.rs— All config structs, env var expansion, TOML loading.crates/meepo-core/src/tools/mod.rs—ToolHandlertrait,ToolRegistry,json_schema()helper.crates/meepo-core/src/platform/mod.rs— OS abstraction traits and factory functions.crates/meepo-core/src/autonomy/mod.rs—AutonomousLoop(observe/think/act cycle).config/default.toml— Default config template with extensive comments.
Conventions
Rust
- Edition: 2024 — use
letchains,if letchains - Errors:
anyhow::Resultin application code,thiserrorfor library types - Logging:
tracingmacros (debug!,info!,warn!,error!) — neverprintln!in library code - Async:
tokioruntime,async_traitfor trait methods - Config:
serdewith#[serde(default = "fn_name")]for optional fields
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.
- 5d ago First seen · 121 lines · 1,304 tokens per session scan A cbd3581063c9
meepo AGENTS.md is an instructions file published in the GitHub repository leancoderkavy/meepo (3 stars, last pushed 6mo ago), licensed MIT. It adds 1,304 tokens to every session, about $0.0065 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
browser-agent AGENTS.md
Instructions for uiuing/browser-agent, covering agents.md — guide for ai coding agents, setup & commands, tests — run these before claiming done, repository layout and architecture invariants (do not break these).
wove copilot-instructions.md
Instructions for mits-pl/wove, covering wave terminal — copilot instructions, project rules, skill guides and preview server.
browser-agent CLAUDE.md
Instructions for uiuing/browser-agent, a project described as: An open-source AI agent for the browser. Bring any model. It plans in the side panel, acts on real pages through tools, and verifies every claimed result against the live DOM — with guardrails and reusable skills.
Oh-my-ClaudeClaw CLAUDE.md
Instructions for Kit4Some/Oh-my-ClaudeClaw, covering openclaw-cc v2 — autonomous ai harness, mandatory behavior — execute on every interaction, phase 0: context injection (before responding), phase 1: automatic task analysis and phase 2: execution with quality gates.
ClawFleet CLAUDE.md
Instructions for clawfleet/ClawFleet, covering claude.md, project, architecture layers, clawsandbox (infrastructure) and clawfleet (product).
AIPex CLAUDE.md
Instructions for AIPexStudio/AIPex, a project described as: AIPex: AI browser automation assistant, no migration and privacy first. Alternative to Manus Browser Operator、 Claude Chrome and Agent Browser.