PulseAugur
实时 12:54:23
English(EN) session-indexer: giving Claude Code a memory that doesn't die with the project next door

新工具为 Claude Code 提供项目特定的持久记忆

一款名为 session-indexer 的新开源工具已被开发出来,为 Claude Code 提供针对单个项目的持久记忆。这款基于 Go 的实用工具将对话记录存储在每个项目目录内的本地 SQLite 数据库中,避免了集中式记忆解决方案中常见的单点故障。当新对话开始时,session-indexer 会根据当前项目上下文,通过 Ollama 使用 bge-m3 嵌入进行语义相似性搜索,自动检索相关的过去讨论片段,如果 Ollama 不可用,则回退到关键词搜索。 AI

影响 通过提供持久的、项目特定的记忆,增强了 AI 编码助手的实用性,改善了开发人员的工作流程并降低了上下文切换的开销。

排序理由 这是 AI 助手的一个新开源工具发布。

在 dev.to — Claude Code tag 阅读 →

AI 生成摘要 · Google Gemini · 来自 1 个来源。 我们如何撰写摘要 →

新工具为 Claude Code 提供项目特定的持久记忆

报道来源 [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…