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/openagenthq/localmem-mcp/claude-mdgit clone --depth 1 https://github.com/OpenAgentHQ/localmem-mcpWrote 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/openagenthq/localmem-mcp/claude-md)<a href="https://agentmods.dev/instructions/openagenthq/localmem-mcp/claude-md"><img src="https://agentmods.dev/badge/instructions/openagenthq/localmem-mcp/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.1 | $0.01902 | $0.01902 |
| Opus 5 | $0.00951 | $0.00951 |
| Sonnet 5 | $0.00380 | $0.00380 |
| Haiku 4.5 | $0.00190 | $0.00190 |
Grade A, and why
localmem-mcp 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 6d 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 — 165 lines — stays where its author put it; the contents beside it link to each section on GitHub.
CLAUDE.md
Project context for agent sessions working on this repo.
What this is
localmem-mcp gives AI agents persistent memory that never leaves the user's
machine. It ships as both an MCP server and an importable Python library.
The whole pitch is one sentence: local-first, zero-API memory for AI agents — no cloud calls, no API keys, no per-call billing. Every change should keep that sentence true.
Non-negotiables
- No network calls at runtime. The single exception is fastembed's one-time model download on first use. Do not add telemetry, analytics, update checks, or any hosted service dependency.
- No API keys. If a feature needs a key, it doesn't belong here.
- Single-purpose. This is a memory tool. Resist scope creep into agent frameworks, RAG pipelines, or chat UIs.
- Install-to-working under 30 seconds. Weigh every new dependency against
that.
fastembedwas chosen oversentence-transformersprecisely for install size and cold-start time — don't swap it back. - New task, new branch, new PR. Never continue an existing PR's branch to do unrelated work. See Branching and PRs.
Layout
The code is organized into three implementation packages, each fronted by a
backward-compatible facade module so the documented import paths
(localmem_mcp.store, .server, .cli) never change as internals grow.
src/localmem_mcp/
core/ Data layer. MemoryStore — SQLite schema, embeddings, hybrid
search. The core of the project.
models.py Memory, SearchResult records
embedders.py Embedder protocol, FastEmbedEmbedder, DEFAULT_MODEL
schema.py _SCHEMA DDL + FTS5 sync triggers
search.py _cosine, _fts_query, KEYWORD_WEIGHT
portability.py JSONL import: import_records, ImportReport
utils.py tag/vector/row helpers, default_db_path, _days_ago
store.py MemoryStore class
mcp/ MCP server. app.py (FastMCP instance + store lifecycle) and
tools.py (thin wrappers over MemoryStore; tool docstrings are
the agent-facing UX — they matter as much as the code).
commands/ CLI. parser.py (argparse), handlers.py (per-command logic),
main.py (dispatch). `localmem-mcp` with no args runs the server.
store.py facade re-exporting core/ (stable import path)
server.py facade re-exporting mcp/ (stable import path)
cli.py facade re-exporting commands/ (console entry point)
tests/
test_store.py store behaviour, against a deterministic stub embedder
test_server.py MCP tools end-to-end via fastmcp's in-memory Client
benchmarks/ run.py — add/search latency harness; RESULTS.md — committed numbers
docs/ MkDocs Material site, published to GitHub Pages from main
mkdocs.yml site config
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.
- 6d ago First seen · 165 lines · 1,902 tokens per session scan A 926127bbf39e
localmem-mcp CLAUDE.md is an instructions file published in the GitHub repository OpenAgentHQ/localmem-mcp (7 stars, last pushed 4d ago), licensed MIT. It adds 1,902 tokens to every session, about $0.0095 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
agentic-context-engine AGENTS.md
Instructions for kayba-ai/agentic-context-engine, covering agents.md, repository guidelines, pipeline-first development (mandatory), core code protection and documentation maintenance.
agentic-context-engine CLAUDE.md
Instructions for kayba-ai/agentic-context-engine, covering claude.md, repository guidelines, pipeline-first development (mandatory), core code protection and documentation maintenance.
claude-tap AGENTS.md
Instructions for liaohch3/claude-tap, covering maintainer automation notes, agents 索引, documentation boundary, review guidelines and pre-commit hook.
opencodex AGENTS.md
AGENTS.md instructions for lidge-jun/opencodex, covering agents.md, what this project is, repository layout, optional subsystems stay off the core path and the devlog directory.
plur CLAUDE.md
Claude Code instructions for plur-ai/plur, covering claude.md, what is plur, development, package dependency and version bumps.
goai AGENTS.md
AGENTS.md instructions for zendev-sh/goai, covering agents.md - goai, commands, architecture, key rules and adding providers.