code-recall CLAUDE.md

Repository instructions for code-recall, a Model Context Protocol server that gives coding agents searchable memory stored in a local SQLite database. Model Context Protocol is a standard way for AI agents to use external tools and data.

In plain words
What is it for?
Use it when developing or testing code-recall, including its memory, database, search, and server components.
Why use it?
It gives an agent the project's purpose, structure, commands, and testing guidance in one place.

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/abians/code-recall/claude-md
Clone the repo
git clone --depth 1 https://github.com/AbianS/code-recall
Per session 813 This file is loaded in full into every session.
When invoked 813 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.00813 $0.00813
Opus 5 $0.00407 $0.00407
Sonnet 5 $0.00163 $0.00163
Haiku 4.5 $0.00081 $0.00081

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

Security

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.

CLAUDE.md · 87 lines

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

  1. MCP Server (server.ts) exposes 8 tools via stdio transport
  2. MemoryManager handles storing/searching memories with embeddings
  3. DatabaseManager persists to SQLite with sqlite-vec for vector search
  4. RulesEngine matches actions against rules using cosine similarity
  5. 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

Read the full file on GitHub · 87 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. 2d ago First seen · 87 lines · 813 tokens per session scan A 53e1e27c52af

Subscribe to this mod's changes

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.