repomemory CLAUDE.md

repomemory CLAUDE.md is an instructions file for coding agents from DanielGuru/repomemory. It costs 3,405 tokens per session, scanned A, original, MIT.

Repository instructions for repomemory, a system that stores project knowledge for AI agents between tasks. They require searching past decisions before work and recording discoveries afterward.

In plain words
What is it for?
Use them in a repomemory-enabled repository to search project context, assess risks, record decisions, and remove outdated knowledge.
Why use it?
They reduce repeated mistakes by making the agent check architecture notes, preferences, regressions, and hidden file relationships before changing code.

Instructions file

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/danielguru/repomemory/claude-md
Clone the repo
git clone --depth 1 https://github.com/DanielGuru/repomemory

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 repomemory CLAUDE.md

README.md
[![agentmods](https://agentmods.dev/badge/instructions/danielguru/repomemory/claude-md.svg)](https://agentmods.dev/instructions/danielguru/repomemory/claude-md)
Your own site
<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>
Per session 3,405 This file is loaded in full into every session.
When invoked 3,405 The same file — it is already loaded in full.
Security scan A 1 finding. 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.03405 $0.03405
Opus 5 $0.01702 $0.01702
Sonnet 5 $0.00681 $0.00681
Haiku 4.5 $0.00341 $0.00341

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

Security

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
CLAUDE.md · 254 lines

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:

  1. Call context_search with keywords related to your task
  2. If this is a new session, call context_auto_orient for a full project overview
  3. NEVER propose changes without first checking for past decisions

During your session:

  • ALWAYS use context_write to record discoveries, decisions, and gotchas
  • ALWAYS use context_delete to 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_risk with 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.

Read the full file on GitHub · 254 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. 3d ago First seen · 254 lines · 3,405 tokens per session scan A cea489d163ea

Subscribe to this mod's changes

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.

Related

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.

AVIDS2/memorix · 1,073 tokens

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.

AVIDS2/memorix · 846 tokens

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

adelinamart/robrain · 247 tokens

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.

tinhien11/remem-mcp · 3,501 tokens

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.

ilang-ai/Mem-Forever · 1,061 tokens

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.

DoppiaG93/ctxmem · 566 tokens