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/danielguru/repomemory/claude-mdgit clone --depth 1 https://github.com/DanielGuru/repomemoryWrote 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/danielguru/repomemory/claude-md)<a href="https://agentmods.dev/instructions/danielguru/repomemory/claude-md"><img src="https://agentmods.dev/badge/instructions/danielguru/repomemory/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.03405 | $0.03405 |
| Opus 5 | $0.01702 | $0.01702 |
| Sonnet 5 | $0.00681 | $0.00681 |
| Haiku 4.5 | $0.00341 | $0.00341 |
Grade A, and why
repomemory 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 3d 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.
Runs shell commandslowCapability
Expected in a hook, worth knowing in a rule or an instructions file.
- Don't use execSync for git commands — use execFileSync to prevent shell injection How it starts
The opening of the file, as written. The whole thing — 254 lines — stays where its author put it; the contents beside it link to each section on GitHub.
repomemory — Agent Instructions
Repository Memory (repomemory)
This repo uses repomemory for persistent AI memory.
IMPORTANT: Before starting ANY task, you MUST call context_search with relevant
keywords. This is NOT optional. The knowledge base contains architecture docs,
past decisions, and known regressions that WILL save you from mistakes.
Do NOT skip this step even if the task seems simple.
ALWAYS at the start of every task:
- Call
context_searchwith keywords related to your task - If this is a new session, call
context_auto_orientfor a full project overview - NEVER propose changes without first checking for past decisions
During your session:
- ALWAYS use
context_writeto record discoveries, decisions, and gotchas - ALWAYS use
context_deleteto remove stale or incorrect knowledge - Record coding preferences in
context_write(category="preferences", ...)
Before modifying code:
- You MUST search for known regressions related to the component
- You MUST check for past decisions before proposing alternatives
- Call
context_riskwith the file paths you plan to modify — it reveals hidden coupling (files that must change together), ownership concentration, and churn hotspots
At end of session (REQUIRED):
- Write a session summary:
context_write(category="sessions", ...) - Route discoveries to the right category (facts/, decisions/, preferences/)
What This Is
A CLI tool + MCP server that gives AI coding agents persistent, structured memory for repositories. Agents can search, write, and delete knowledge that persists across sessions. Features hybrid keyword + semantic search, auto-session capture, intelligent category routing, auto-purge detection, and global developer context that follows you across all repos.
npm package: repomemory
Repo: https://github.com/DanielGuru/repomemory
Architecture
src/
├── index.ts # CLI entry point (Commander.js). 11 commands. Global error handlers.
├── commands/
│ ├── init.ts # Scaffolds .context/ directory + .repomemory.json config.
│ │ Exports CLAUDE_MD_BLOCK with MUST/ALWAYS agent instructions.
│ ├── analyze.ts # AI-powered repo analysis. System prompt, orchestration,
│ │ spinner, dry-run, merge mode, retry with backoff.
│ ├── sync.ts # Reads git log → writes to .context/changelog/YYYY-MM.md
│ │ with commit hash deduplication.
│ ├── serve.ts # Thin wrapper that calls startMcpServer()
│ ├── setup.ts # Configures 7 tools: Claude, Cursor, Copilot, Windsurf,
│ │ Cline, Aider, Continue.
│ ├── status.ts # Beautiful coverage bars, freshness indicators, suggestions.
│ ├── wizard.ts # Interactive guided setup using @clack/prompts.
│ ├── dashboard.ts # Localhost web UI with edit, server-side search, export.
│ ├── hook.ts # Git post-commit hook install/uninstall.
│ ├── go.ts # One-command setup: init + analyze + setup claude + global profile.
│ ├── search.ts # CLI search across repo + global context. Hybrid FTS5 + vector.
│ ├── risk.ts # Git intelligence CLI: hotspots, co-change, ownership analysis.
│ └── global.ts # Manage global developer context (~/.repomemory/global/).
│ list, read, write, delete, export, import subcommands.
├── mcp/
│ └── server.ts # MCP server. 7 tools + 2 prompts + resources.
│ Dual-store: repo (.context/) + global (~/.repomemory/global/).
│ Scope routing: preferences→global, everything else→repo.
│ Session tracking, auto-capture on shutdown,
│ intelligent category routing, auto-purge detection,
│ progressive disclosure (compact/full), write-nudge.
└── lib/
├── ai-provider.ts # Multi-provider abstraction (Anthropic, OpenAI, Gemini, Grok).
│ Anthropic uses streaming. Gemini uses systemInstruction.
│ AIError class with isRetryable. Cost estimation.
├── embeddings.ts # Embedding provider abstraction (OpenAI, Gemini).
│ cosineSimilarity(). createEmbeddingProvider() with auto-detect.
├── config.ts # Loads .repomemory.json with Zod validation. Single source
│ of DEFAULT_CONFIG truth. Embedding + global context config.
│ resolveGlobalDir() for ~ expansion.
├── context-store.ts # CRUD + delete for .context/ files. Category validation.
│ Sanitized filenames with NFKD unicode normalization.
│ forAbsolutePath() factory for global store.
├── search.ts # sql.js (Wasm) FTS5 + optional vector search.
│ Hybrid scoring (alpha * keyword + (1-alpha) * semantic).
│ DB persistence (loads from disk on restart).
│ Incremental indexEntry() and removeEntry() methods.
├── json-repair.ts # JSON extraction/repair pipeline. extractJSON, fixJsonNewlines,
│ repairTruncatedJSON. Extracted from analyze.ts for testability.
├── git.ts # Git info extraction using execFileSync (no shell injection).
│ getLastCommitHash() for sync deduplication.
├── git-intelligence.ts # Git history analysis: hotspots (churn×commits), co-change
│ detection (Jaccard similarity), file ownership & bus factor.
│ analyzeGitIntelligence() for overview, assessFileRisk() for targets.
└── repo-scanner.ts # Walks repo tree respecting .gitignore, detects languages/
frameworks across JS, Python, Rust, Go, Ruby ecosystems.
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.
- 3d ago First seen · 254 lines · 3,405 tokens per session scan A cea489d163ea
repomemory CLAUDE.md is an instructions file published in the GitHub repository DanielGuru/repomemory (2 stars, last pushed 4mo ago), licensed MIT. It adds 3,405 tokens to every session, about $0.0170 per session on Opus 5. A static security scan graded it A with 1 finding (runs shell commands). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.
Other instructions, from other repositories
memorix CLAUDE.md
Claude Code instructions for AVIDS2/memorix, covering memorix - agent instructions for claude code, using memorix memory tools, when to search memory, when to store memory and when to resolve memory.
memorix GEMINI.md
Gemini CLI instructions for AVIDS2/memorix, covering memorix - cross-agent memory rules, session start - bind project, then load context, during session - capture important context, architecture & decisions and bug fixes & problem solving.
robrain AGENTS.md
Instructions for adelinamart/robrain, covering robrain — context management (oss self-hosted), session start (mandatory, first thing in every new chat), after every response (mandatory) and session end (last thing).
remem-mcp AGENTS.md
Instructions for tinhien11/remem-mcp, covering agent rules, always use remem-mcp, before answering or coding, before searching code and for code navigation.
Mem-Forever copilot-instructions.md
Instructions for ilang-ai/Mem-Forever, covering mem-forever, session start, onboarding (soul.md empty), soul.md format and memory update.
ctxmem AGENTS.md
Instructions for DoppiaG93/ctxmem: This repo has a ctxmem memory: a shared, git-committed record of decisions and code context. Treat it as your first source of truth and keep it correct. Follow this loop on EVERY request, without being asked.