PulseAugur
EN
LIVE 10:02:34

New tool gives Claude Code project-specific persistent memory

A new open-source tool called session-indexer has been developed to provide Claude Code with persistent memory for individual projects. This Go-based utility stores session transcripts in a local SQLite database within each project's directory, preventing a single point of failure common in centralized memory solutions. When a new session begins, session-indexer automatically retrieves relevant past discussion chunks based on the current project context, using semantic similarity with bge-m3 embeddings via Ollama, or falling back to keyword search if Ollama is unavailable. AI

IMPACT Enhances AI coding assistant utility by providing persistent, project-specific memory, improving developer workflow and reducing context-switching overhead.

RANK_REASON This is a new open-source tool release for an AI assistant.

Read on dev.to — Claude Code tag →

AI-generated summary · Google Gemini · from 1 sources. How we write summaries →

New tool gives Claude Code project-specific persistent memory

COVERAGE [1]

  1. dev.to — Claude Code tag TIER_1 English(EN) · Valentyn Solomko ·

    session-indexer: giving Claude Code a memory that doesn't die with the project next door

    <p>I come back to a project after a week off, and the first ten minutes always go the same way: scrolling through old sessions, trying to remember <em>what we actually decided about X</em>.</p> <p>A simple rolling log — "here's what we did yesterday" — solves half of that. It doe…