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/abians/code-recall/claude-mdgit clone --depth 1 https://github.com/AbianS/code-recallWhat 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.00813 | $0.00813 |
| Opus 5 | $0.00407 | $0.00407 |
| Sonnet 5 | $0.00163 | $0.00163 |
| Haiku 4.5 | $0.00081 | $0.00081 |
Grade A, and why
code-recall 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 2d 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 — 87 lines — stays where its author put it; the contents beside it link to each section on GitHub.
CLAUDE.md
This file provides guidance to Claude Code (claude.ai/code) when working with code in this repository.
Project Overview
code-recall is an MCP (Model Context Protocol) server that provides semantic memory for AI coding agents. It stores observations, decisions, and learnings in a local SQLite database with vector search capabilities.
Commands
# Development
bun run dev # Watch mode with auto-reload
bun run start # Run server directly
# Testing
bun test # Run all tests
bun test tests/memory/search.test.ts # Run specific test file
# Linting
bun run lint # Check code with Biome
bun run lint:fix # Fix lint issues
Architecture
Core Components
src/
├── index.ts # Entry point, starts MCP server via stdio
├── server.ts # MCP server setup, registers all 8 tools
├── database/ # SQLite + sqlite-vec operations
│ └── index.ts # DatabaseManager - all DB operations
├── memory/ # Semantic memory system
│ ├── index.ts # MemoryManager - high-level memory API
│ ├── embeddings.ts # Local embeddings via @xenova/transformers
│ └── search.ts # Hybrid search (vector + FTS + recency)
├── rules/ # Guardrail rules engine
│ └── index.ts # RulesEngine - semantic rule matching
└── code/ # Code analysis via tree-sitter
├── index.ts # analyzeFile() entry point
├── parser.ts # tree-sitter WASM loader
└── extractors/ # Language-specific entity extraction
Data Flow
- MCP Server (
server.ts) exposes 8 tools via stdio transport - MemoryManager handles storing/searching memories with embeddings
- DatabaseManager persists to SQLite with sqlite-vec for vector search
- RulesEngine matches actions against rules using cosine similarity
- CodeAnalyzer extracts entities (classes, functions) via tree-sitter
Search Algorithm
Hybrid search in memory/search.ts combines:
- Vector similarity (50%) - cosine similarity via sqlite-vec
- Full-text search (30%) - SQLite FTS5 BM25 ranking
- Recency (15%) - exponential decay over 7 days
- Failure boost (5%) - failed decisions rank 1.5x higher
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.
- 2d ago First seen · 87 lines · 813 tokens per session scan A 53e1e27c52af
code-recall CLAUDE.md is an instructions file published in the GitHub repository AbianS/code-recall (4 stars, last pushed 7mo ago), licensed MIT. It adds 813 tokens to every session, about $0.0041 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
mcp-memory-service CLAUDE.md
Instructions for doobidoo/mcp-memory-service, covering claude.md, non-negotiables (hard rules), critical directives, operational rules and auto-save learnings.
helmor AGENTS.md
Instructions for dohooo/helmor, covering agents.md, what is helmor, commands, architecture and three-process model.
codemark GEMINI.md
Instructions for DanielCardonaRojas/codemark, covering development workflow and debugging with the tui logging system.
matt-skills-with-to-goal CLAUDE.md
Instructions for tt-a1i/matt-skills-with-to-goal: Skills are organized into bucket folders under skills/.
ephemeral-sandbox CLAUDE.md
Instructions for Ephemeral-AI-Lab/ephemeral-sandbox, covering claude.md, project, engineering practice (required), build & test and sandbox tools.
code-context AGENTS.md
Instructions for infino-ai/code-context, covering code-context: notes for ai agents, project overview, repo map, build, test, gates and conventions.