meepo AGENTS.md

meepo AGENTS.md is an instructions file for Codex, OpenCode from leancoderkavy/meepo. It costs 1,304 tokens per session, scanned A, original, MIT.

A set of working instructions for Meepo, a local Rust-based AI agent that connects to messaging and other personal services. It documents the project structure, coding conventions, and commands used to build and test it.

In plain words
What is it for?
Use it when modifying Meepo to find the roles of its seven Rust packages and run the required build, test, check, and lint commands.
Why use it?
It gives coding agents the project context and verification steps needed to make safer changes.

Instructions file for CodexOpenCode

Install

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.

agentmods
npx agentmods add instructions/leancoderkavy/meepo/agents-md
Clone the repo
git clone --depth 1 https://github.com/leancoderkavy/meepo

Made for: Codex, OpenCode.

Wrote 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.

agentmods badge for meepo AGENTS.md

README.md
[![agentmods](https://agentmods.dev/badge/instructions/leancoderkavy/meepo/agents-md.svg)](https://agentmods.dev/instructions/leancoderkavy/meepo/agents-md)
Your own site
<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>
Per session 1,304 This file is loaded in full into every session.
When invoked 1,304 The same file — it is already loaded in full.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

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.

ModelPer sessionOnce 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

Measured 5d ago against content hash cbd3581063c9, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

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.

AGENTS.md · 121 lines

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 both cmd_start() and cmd_mcp_server().
  • crates/meepo-cli/src/config.rs — All config structs, env var expansion, TOML loading.
  • crates/meepo-core/src/tools/mod.rsToolHandler trait, ToolRegistry, json_schema() helper.
  • crates/meepo-core/src/platform/mod.rs — OS abstraction traits and factory functions.
  • crates/meepo-core/src/autonomy/mod.rsAutonomousLoop (observe/think/act cycle).
  • config/default.toml — Default config template with extensive comments.

Conventions

Rust

  • Edition: 2024 — use let chains, if let chains
  • Errors: anyhow::Result in application code, thiserror for library types
  • Logging: tracing macros (debug!, info!, warn!, error!) — never println! in library code
  • Async: tokio runtime, async_trait for trait methods
  • Config: serde with #[serde(default = "fn_name")] for optional fields

Read the full file on GitHub · 121 lines

Changes

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.

  1. 5d ago First seen · 121 lines · 1,304 tokens per session scan A cbd3581063c9

Subscribe to this mod's changes

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.

Related

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).

uiuing/browser-agent · 1,806 tokens

wove copilot-instructions.md

Instructions for mits-pl/wove, covering wave terminal — copilot instructions, project rules, skill guides and preview server.

mits-pl/wove · 816 tokens

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.

uiuing/browser-agent · 59 tokens

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.

Kit4Some/Oh-my-ClaudeClaw · 5,761 tokens

ClawFleet CLAUDE.md

Instructions for clawfleet/ClawFleet, covering claude.md, project, architecture layers, clawsandbox (infrastructure) and clawfleet (product).

clawfleet/ClawFleet · 3,755 tokens

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.

AIPexStudio/AIPex · 4 tokens