@QingQ77: 让 AI 编程工具在浏览器聊天和 IDE 之间共用一份持久记忆,省得每次重新交代背景。 https://github.com/Eshaan-Nair/ArcRift… ArcRift 是个本地优先的 AI 记忆层。Chrome 扩展抓 C…

X AI KOLs Timeline 工具

摘要

ArcRift 是一个本地优先的 AI 记忆层,通过 Chrome 扩展和 MCP Server 在浏览器聊天和 IDE 工具之间共享持久记忆,避免重复交代上下文。

让 AI 编程工具在浏览器聊天和 IDE 之间共用一份持久记忆,省得每次重新交代背景。 https://github.com/Eshaan-Nair/ArcRift… ArcRift 是个本地优先的 AI 记忆层。Chrome 扩展抓 Claude/ChatGPT/DeepSeek 这些网页聊天的内容,MCP Server 让 Cursor/Claude Code 之类的 IDE 工具读到同一份数据,底层就是本地 SQLite + Ollama 嵌入。
查看原文
查看缓存全文

缓存时间: 2026/06/02 17:36

让 AI 编程工具在浏览器聊天和 IDE 之间共用一份持久记忆,省得每次重新交代背景。

https://github.com/Eshaan-Nair/ArcRift…

ArcRift 是个本地优先的 AI 记忆层。Chrome 扩展抓 Claude/ChatGPT/DeepSeek 这些网页聊天的内容,MCP Server 让 Cursor/Claude Code 之类的 IDE 工具读到同一份数据,底层就是本地 SQLite + Ollama 嵌入。


Eshaan-Nair/ArcRift

Source: https://github.com/Eshaan-Nair/ArcRift

ArcRift — Persistent Memory for AI Coding Tools

Your AI forgets everything between sessions. ArcRift fixes that.

Memory saved in a browser chat is instantly available in your coding tool, and vice versa.

A local-first memory layer that captures your conversations, builds a searchable knowledge graph, and automatically injects the right context into every new prompt — no cloud, no subscriptions, no re-explaining yourself.


Stars Forks Issues Version License: MIT


Browser Extension: Claude · ChatGPT · Gemini · DeepSeek · Grok · Copilot · Mistral

MCP (AI Coding Tools): Claude Code · Cursor · Windsurf · Claude Desktop

https://github.com/user-attachments/assets/f77a865a-cee9-4f7c-b0fa-4fb4d1cee7be

Youtube Link

The Demo only showcases the main function of ArcRift, there are a lot of features for you to Explore!


One Command Setup

npx arcrift-setup
Historical NPM Downloads (Legacy Brands)
Due to rebranding, the total historical download count is split across our three NPM packages:
Package NameDownloads
arcrift-setup (Current)Downloads
glia-ai-setup (Legacy)Downloads
synq-setup (Legacy)Downloads

The Problem

You are deep in a complex project. You have had 30 conversations with Claude about your auth flow, database schema, and deployment strategy. You open a new chat — and it is all gone. You spend 10 minutes re-explaining context you have already covered, and the AI gives you advice that contradicts decisions you made two weeks ago.

ArcRift stops the cycle. It captures your AI conversations, extracts structured facts into a knowledge graph, embeds them as searchable vectors, and automatically prepends the most relevant context to every new prompt — before you even finish typing.


Table of Contents


Installation

For Users (The Easy Way)

ArcRift is a powerful AI developer tool. Before installing the .exe, you must have Node.js and Ollama installed on your computer to run the backend and local AI models. If you don’t have these, use the Developer (One-Command Setup) below to automatically install them!

  1. Head over to the Releases page.
  2. Download the latest ArcRift_Installer.exe (or your OS equivalent).
  3. Double-click the installer to install ArcRift on your machine.
  4. Launch ArcRift from your Start menu! The app will live entirely in your system tray and run seamlessly in the background.

For Developers (Building from Source)

If you want to modify the code, build the project yourself, or use the MCP Tools:

1. One-Command Setup (All Platforms)

npx arcrift-setup

This clones the repo, checks dependencies, pulls Ollama models, installs packages, and builds the backend.

2. Launching the Development Server To launch the native desktop application in dev mode:

npm run dev:desktop

This will start the backend seamlessly in the background and open the native ArcRift dashboard. When you close the window, it will minimize to your system tray. You can fully quit ArcRift from the tray menu.

Web Extension Setup

The extension requires the ArcRift backend to be running. It does not work standalone.

Step 1 — Install and start the backend

# One-command (recommended)
npx arcrift-setup

# Or manual
git clone https://github.com/Eshaan-Nair/ARCRIFT.git
cd ARCRIFT/backend
cp .env.example .env        # Edit .env — add GROQ_API_KEY if using Groq
npm install

Set storage mode in backend/.env:

ARCRIFT_STORAGE_MODE=sqlite    # Recommended — no Docker needed
OLLAMA_URL=http://localhost:11434
GROQ_API_KEY=gsk_your_key_here

Start the backend: The easiest way is to simply launch your ArcRift Desktop App (which runs the backend natively).

Alternatively, if you are running in Headless/Developer mode:

# Windows
start.bat

# macOS / Linux
./start.sh

The backend starts on http://localhost:3001. The extension will automatically connect to it.

Step 2 — Build the extension

cd extension
npm install
npm run build

This produces the extension/dist/ folder.

Step 3 — Load into Chrome

  1. Open chrome://extensions
  2. Enable Developer mode (top-right toggle)
  3. Click Load unpacked
  4. Select the ARCRIFT/extension/dist folder
  5. The ArcRift icon appears in your toolbar

Step 4 — Use it

Navigate to Claude, ChatGPT, Gemini, DeepSeek, Grok, Copilot, or Mistral. Click the ArcRift popup, enter a project name, and click Save Chat. Auto-connect activates immediately.

Daily use: Simply keep the ArcRift Desktop App running in your system tray! If you are in developer mode, double-click start.bat or ./start.sh.


MCP Server Setup

The MCP server runs as a separate process and communicates with AI coding tools over stdio. The backend does not need to be running as an HTTP server — the MCP server initializes its own storage connection.

Step 1 — Build the backend

cd backend
npm install
npm run build

This produces backend/dist/mcp/server.js.

Step 2 — Generate your config (easiest)

cd backend
npm run mcp:config

This prints a pre-formatted JSON block with absolute paths resolved for your machine. Copy it directly into your tool’s config file.

Step 3 — Add to your AI tool

Claude Desktop%APPDATA%\Claude\claude_desktop_config.json (Windows) or ~/.claude/claude_desktop_config.json (macOS):

{
  "mcpServers": {
    "arcrift": {
      "command": "node",
      "args": ["C:/path/to/ARCRIFT/backend/dist/mcp/server.js"]
    }
  }
}

Claude Code — run in your project directory:

claude mcp add ArcRift node /path/to/ARCRIFT/backend/dist/mcp/server.js

Cursor — create .cursor/mcp.json in your project root:

{
  "mcpServers": {
    "arcrift": {
      "command": "node",
      "args": ["/path/to/ARCRIFT/backend/dist/mcp/server.js"]
    }
  }
}

Windsurf — create .windsurf/mcp.json in your project root:

{
  "mcpServers": {
    "arcrift": {
      "command": "node",
      "args": ["/path/to/ARCRIFT/backend/dist/mcp/server.js"]
    }
  }
}

Use forward slashes in all paths, even on Windows. Restart your AI tool after editing the config.

Step 4 — Set the storage mode

The MCP server reads backend/.env. Make sure it contains:

ARCRIFT_STORAGE_MODE=sqlite
OLLAMA_URL=http://localhost:11434

Ollama must be running for the MCP server to generate embeddings and extract knowledge graph triples.


Running Both Together

When running the browser extension and MCP server together, they share the same ArcRift.db database. No extra configuration is needed.

  1. Start the HTTP backend: start.bat or ./start.sh
  2. Load the extension in Chrome (it talks to http://localhost:3001)
  3. Your AI coding tool starts the MCP server automatically when you open a project

Memory saved via the extension is immediately available in recall_context, and memory stored via store_memory appears in the dashboard history. They are the same database.

The HTTP backend and MCP server both use WAL mode on SQLite, which allows them to read and write concurrently without locking each other out.


Usage Guide

Using the Browser Extension

Saving a conversation:

  1. Have a conversation on any supported platform
  2. Click the ArcRift icon in the Chrome toolbar
  3. Enter a project name (e.g. AuthService, MyApp-Backend)
  4. Click Save Chat

ArcRift scrubs PII, chunks the text, embeds it locally with Ollama, and sends it to the backend. The UI confirms success in under 5 seconds. Background indexing (sentence-level embeddings, knowledge graph extraction) continues asynchronously.

Auto-connect:

Once a session is saved and activated, ArcRift intercepts every prompt you type on that platform. Before the request is sent, it queries the backend for relevant context and prepends the top results. You do not need to do anything — just type normally.

To pause: click the ArcRift popup and hit Pause. The badge dims. Click again to resume.

New chat detection:

When you click “New Chat” on ChatGPT, Claude.ai, or Gemini, ArcRift detects the URL or DOM change and resets the active session. The next Save will start a fresh project, and context from the previous session will not bleed in.

Classic inject:

For a one-time context push without enabling auto-connect, click Inject Context in the popup. ArcRift pastes the knowledge graph summary directly into the chat input field. You review it and send manually.


Using the MCP Tools

Once connected, your coding agent has access to seven ArcRift tools. A typical session looks like this:

At session start — recall project memory:

Use recall_context with prompt: "implementing JWT refresh token rotation"
and project: "AuthService"

After completing work — save decisions:

Use store_memory with content: "We implemented refresh token rotation using
Redis for token invalidation. The key insight was using a sliding expiry window
of 15 minutes for access tokens and 7 days for refresh tokens." and project: "AuthService"

Finding something from a different project:

Use search_memory with query: "rate limiting strategy"

Getting an overview before starting:

Use get_project_summary for project: "AuthService"

Auto-detecting the current project:

Use identify_active_project with path: "/Users/me/code/auth-service"

Correcting outdated information:

Use prune_memory with prompt: "Redis rate limiting" and project: "AuthService"

Dashboard

Open http://localhost:3001 while the backend is running.

TabWhat you see
GraphD3.js force-directed knowledge graph. Nodes are entities, edges are relations. Degree-scaled sizing — high-connectivity nodes appear larger. Hover for details, scroll to zoom, drag to reposition.
HistoryAll extracted triples (subject / relation / object) with timestamps. Filterable by project and relation type.
ChatThe full saved conversation rendered as color-coded chat bubbles, with platform attribution.
Job QueueLive view of background indexing jobs — pending, processing, completed, dead-lettered.

System Requirements

ModeMin RAMDiskDockerWhat runs
SQLite (Recommended)2 GB3 GBNot requiredAll features — single .db file + Ollama
Full Docker8 GB15 GBRequiredNeo4j + MongoDB + ChromaDB + Ollama
Lite Docker4 GB10 GBRequiredMongoDB + ChromaDB (no knowledge graph)

SQLite mode is the recommended default. The installer detects Docker automatically and sets SQLite mode if Docker is not available.

Prerequisites

RequirementVersionNotes
Node.js20 LTS+nodejs.org
OllamaLatestollama.com — required for local embeddings and extraction
Docker Desktop24.0+docker.com — only needed for Docker mode
Groq API Keyconsole.groq.com — free, used as fallback if Ollama is slow

Key Features

Core Retrieval Engine

FeatureDetail
Three-Layer Hybrid SearchSentence vectors, chunk vectors, and FTS5 keyword search run in parallel. Results are fused and ranked by a combined score.
Surgical Sentence TrimmingChunks are split into individual sentences at index time. On retrieval, only the sentences that directly match the query are returned — not the entire surrounding paragraph. Reduces prompt noise by up to 95%.
HyDE (Hypothetical Document Embedding)Before querying the vector store, ArcRift generates a hypothetical answer to your query and uses that embedding alongside the raw query. This dramatically improves recall for rephrased or indirect questions.
Small-to-Big RetrievalHigh-precision sentence match triggers fetching the parent chunk for broader context. Precision of a sentence search, context of a full paragraph.
Knowledge Graph LayerEvery saved conversation is processed to extract subject-relation-object triples (22 entity types, 20+ relation types). Graph facts are fused with vector results on every recall.
Background IndexingSentence-level embedding is offloaded to a background job queue so Save is instant. The deep index is built asynchronously without blocking the UI.

Extension Quality-of-Life

FeatureDetail
Auto-ConnectOnce a session is active, ArcRift re-attaches automatically on every page load. No clicking required — just type.
SPA Navigation AwarenessDetects “New Chat” clicks in single-page apps (ChatGPT, Claude, Gemini) without a full page reload. Automatically resets the active session so context does not bleed between conversations.
Pause / ResumeOne click in the popup pauses auto-injection. Click again to resume. State persists across tabs.
Classic InjectOne-time manual inject button for priming a cold start without enabling auto-connect.
FNV-1a DeduplicationIdentical conversation segments are fingerprinted and skipped — re-saving a chat never creates duplicate embeddings.
Multi-Strategy DOM ResolverEach platform has five ordered selector strategies. If one breaks after a UI update, the next activates automatically.
Restricted URL GuardInjection is blocked on chrome://, about:, and extension pages. Prevents crashes on non-chat pages.

MCP Tool Quality-of-Life

ToolWhat it does
recall_contextRetrieves the top-N most relevant memory chunks for a prompt, scoped to a project. Includes knowledge graph facts.
store_memorySaves text or a transcript to ArcRift Memory. Auto-creates the project if it does not exist. Triggers full background indexing.
search_memoryCross-project global search. Useful for finding decisions made in a different project that apply to the current one.
list_projectsLists all saved projects with metadata — chunk count, triple count, last updated.
get_project_summaryReturns a structured knowledge graph summary for a project as readable markdown.
identify_active_projectMatches a folder path against saved project names. Lets the AI agent auto-detect which project it is working on from the CWD.
prune_memorySurgically removes facts or chunks matching a description. Corrects outdated information without wiping an entire project.

Infrastructure

FeatureDetail
Zero-Docker ModeARCRIFT_STORAGE_MODE=sqlite replaces all Docker services with a single ArcRift.db file. Full feature parity — vector search, knowledge graph, job queue, everything.
WAL ConcurrencySQLite runs in Write-Ahead Logging mode, allowing simultaneous reads from the dashboard, extension, and MCP server without lock contention.
Dead Letter QueueBackground jobs that fail are retried up to 5 times with exponential backoff. Failed jobs move to a dead letter queue visible in the dashboard — nothing is silently lost.
Ghost Job CleanupOn startup, any jobs stuck in PROCESSING state from a previous crashed run are automatically reset to PENDING.
Rate LimitingSave endpoint is rate-limited independently from read endpoints. Prevents accidental flooding from rapid saves.
Helmet Security HeadersAll responses include Content-Security-Policy, X-Frame-Options, X-Content-Type-Options, and related headers.

Architecture

ARCRIFT/
├── backend/
│   ├── src/
│   │   ├── mcp/           MCP server and seven tool implementations
│   │   ├── routes/        REST API (chat, rag, session, jobs)
│   │   ├── services/      Storage bridge, SQLite engine, vector store,
│   │   │                  graph store, embeddings, job queue, extractor
│   │   ├── middleware/     Rate limiting, sanitization, CORS
│   │   └── utils/         Logger, privacy scrubber
│   └── scripts/           Benchmarking, stress testing, maintenance tools
├── dashboard/             React 19 + D3.js + Vite — built to dashboard/dist/
├── extension/
│   ├── src/
│   │   ├── platform/      Multi-strategy DOM resolver
│   │   ├── platforms/     claude, chatgpt, gemini, deepseek, grok, copilot, mistral
│   │   ├── content.ts     DOM scraping, prompt interception, auto-connect
│   │   └── background.ts  Service worker, backend proxy
│   └── popup/             Popup UI and controls
├── reports/               Benchmark and audit outputs
├── .env.example           Configuration template
├── docker-compose.yml     Full Docker profile
├── install.bat / .sh      First-time setup
└── start.bat / .sh        Daily launcher

Ports

ServicePortNotes
Backend API + Dashboard3001Single process — API and static files
MCP ServerstdioSpawned by your AI tool on demand
Ollama11434Local LLM and embeddings
Neo4j7474 / 7687Docker full mode only
MongoDB27017Docker mode only
ChromaDB8000Docker mode only

Tech Stack

LayerTechnology
ExtensionTypeScript, Chrome MV3, esbuild
BackendNode.js, Express 5, TypeScript, Pino
Vector StoreSQLite-vec (vec0 virtual tables, 768-dim float32)
Full-Text SearchSQLite FTS5 with Porter stemmer
Knowledge GraphSQLite facts table (or Neo4j in Docker mode)
EmbeddingsOllama nomic-embed-text (768-dim, CPU-optimized)
LLMOllama llama3.1:8b primary — Groq fallback
MCP@modelcontextprotocol/sdk v1.29+ (stdio transport)
DashboardReact 19, Vite 7, D3.js v7
Static Servingsirv (served from same process as the API)
SecurityHelmet, express-rate-limit

Quality-of-Life Details

These are the smaller decisions that make the system faster and more reliable in practice.

Instant save, deep index later. When you click Save, only the chunk-level embeddings are computed synchronously (1–2 embeddings). Sentence-level embeddings (20–40 embeddings per conversation) are offloaded to a background job. The UI confirms success immediately; the deep index catches up within seconds.

Delete-then-insert for vector updates. SQLite virtual tables do not support UPDATE on vector columns. ArcRift uses a delete-then-insert pattern to avoid UNIQUE constraint errors when re-saving a conversation.

Prefix keyword matching. FTS5 queries use wildcard suffixes (encrypt* matches encryption, encrypted, encryptor). This significantly improves recall for technical terms where the exact suffix varies.

Threshold set at 0.30, not 0.45. Surgical trimming allows a lower similarity threshold. Even if a chunk is only loosely related, if the matching sentences are precise, the noise penalty is near zero.

History-aware fallback. If a query is detected as a history-seeking question (“what did we talk about”, “what was decided”), the trimmer falls back to the first three sentences of the chunk rather than returning nothing.

5-character minimum sentence filter. The sentence splitter ignores fragments shorter than 5 characters. This prevents code snippets and punctuation artifacts from polluting the sentence index.

WAL mode on all writes. SQLite is opened in WAL mode on startup. The MCP server, HTTP backend, and dashboard can all read and write concurrently without database lock errors.

Ghost job recovery. On startup, any jobs stuck in PROCESSING from a previous crash are reset to PENDING automatically. No manual intervention needed after an unclean shutdown.

CORS locked to localhost. The backend only accepts requests from localhost origins. External requests are rejected before they reach any route handler.


How It Works

SAVE
  Browser scrapes conversation → FNV-1a dedup check
  → PII scrub (API keys, JWTs, emails, IPs → [REDACTED])
  → POST to backend

STORAGE (two parallel tracks)

  Vector Track                      Graph Track
  Sliding window chunker            Text sent to Ollama llama3.1:8b
  300 words, 80-word overlap        (Groq as fallback)
  Embeds with nomic-embed-text      Extracts subject-relation-object triples
  Stores in SQLite vec0             Stores in SQLite facts table
  Background: sentence-level        Background: stores after chunk embedding
  embedding job queued

RECALL (on every prompt or tool call)
  Query → HyDE (generate hypothetical answer → embed both)
  → Sentence vector search (top 100, filter by session)
  → Chunk vector search (top 20, filter by session)
  → FTS5 keyword search (prefix match, filter by session)
  → Fuse results, score, deduplicate
  → Surgical trim (keep only matching sentences from each chunk)
  → sanitizeChunks() (scan for injection patterns → redact)
  → wrapInContextBlock() (lean text header)
  → Prepend to prompt

How the Two Modes Work

ArcRift has two complementary modes that share the same memory store. You can use one, the other, or both at the same time.

Mode 1 — Browser Extension (Web)

The extension lives inside Chrome and works on any AI chat website. When you save a conversation, it scrapes the page, scrubs PII, chunks and embeds the text locally, and sends it to the ArcRift backend. On every subsequent prompt you type, the extension intercepts the input, queries the backend for relevant context, and prepends it to your message automatically — before the request hits the AI.

Best for: Claude, ChatGPT, Gemini, DeepSeek, Grok, Microsoft Copilot, and Mistral web interfaces.

Mode 2 — MCP Server (Coding Tools)

The MCP server exposes ArcRift as a set of tools that coding agents can call directly. Instead of intercepting DOM events, the AI tool calls recall_context at the start of a session to pull in relevant memory, and store_memory after completing work to save decisions and context for future sessions.

Best for: Claude Code, Cursor, Windsurf — anywhere you write code with an AI coding agent.

Shared Memory

Both modes write to and read from the same backend database. A conversation you save via the browser extension is immediately available to recall_context in your coding tool, and vice versa. They are two interfaces into one unified knowledge base.


Performance Benchmarks

Every release is stress-tested across four independent audits. All results are reproducible using the scripts in backend/scripts/.

Web Context Engine (Browser Extension)

Scale: 1,000 chunks (~300,000 words) | Needles: 20 facts | Queries: 60 phrasings

MetricResultWhat it means
Recall @ 190.0%Correct fact was the top result in 54 of 60 searches
Mean Reciprocal Rank0.806Correct answer appears at position 1.24 on average (1.0 is perfect)
Context Compression95.0%Payload reduced from 55,350 chars to 2,784 chars before injection
Mean Relevance Score0.464Average semantic similarity of retrieved results (0–1 scale)

Engine contribution across 54 successful recalls:

EngineHitsRole
Sentence Vector50High-precision match against individual sentences
Chunk Vector47Thematic match against full 150-word context windows
FTS5 Keyword43Exact literal matching, boosts low-similarity vector results

The 6 misses were all on degenerate “Context on X?” queries with no semantic content. All natural-language and rephrased queries passed.

Full report: reports/benchmark_web.md


MCP Context Engine (Coding Tools)

Scale: 10 facts across real project memory | Queries: 30 (3 phrasings each) | TopN: 6

MetricResultTarget
Total Recall90%>90%PASS
Context Compression81.3%>75%PASS
Noise Redacted131,700 charsvs. returning 6 full chunks raw

Engine contribution across 27 successful recalls:

EngineHitsContribution
Sentence Vector26100% of recalls
FTS Keyword2492.3% of recalls
Chunk Vector934.6% of recalls

The 3 misses were all on highly rephrased semantic queries with no shared keywords. Standard and lowercase phrasings passed in every case.

Full report: reports/benchmark_mcp.md


MCP Project Isolation Audit

Scale: 10 simultaneous projects | Checks: Store + own-recall + cross-leak per project

MetricResultStatus
Isolation Integrity100%ELITE — zero cross-project leakage
Concurrent AccessPassAll projects readable under simultaneous load
Leak DetectionNegativeNo data from any project visible in another

Each project’s vector space and knowledge graph is strictly siloed via sessionId constraints. Aggressive cleanup logic purges both IDs and Names between runs to prevent identity drift.

Full report: reports/mcp_stress_test.md


Knowledge Graph Stress Audit

Scale: 1,200+ nodes, 1,087 triples in a single session

MetricResultStatus
Total Triples Stored1,087PASS
Ingestion Throughput4,056 triples/secOPTIMIZED
Generation Time0.3 secondsELITE
Dashboard Load< 1.5 secondsPhysics-simulated D3.js render
Storage Cost~0.2 MBSQLite increase for entire stress session

Graph structure: 5 major hubs (40+ edges each), 15 intermediate clusters, 400 mesh entities, 100 isolated standalone facts.

Full report: reports/graph_stress_test.md


Privacy and Security

ArcRift was designed with a local-first philosophy from the ground up. Your conversations never leave your machine unless you explicitly configure a cloud LLM.

ControlDetail
Local StorageAll data lives in ArcRift.db on your machine or in local Docker volumes. Nothing syncs to any external service.
Local Embeddingsnomic-embed-text runs entirely via Ollama — zero API calls for embeddings.
Local Extractionllama3.1:8b runs via Ollama for knowledge graph extraction. Groq is only used as a fallback and only if you provide a key.
PII ScrubbingAPI keys, JWTs, connection strings, email addresses, and internal IPs are redacted to [REDACTED] in the browser before any data is sent to the backend.
Injection DefenceRetrieved chunks are scanned for 10 known prompt injection patterns before being injected into any prompt. Matching content is replaced with [Content redacted].
CORS LockedThe backend rejects requests from any origin other than localhost.
Security HeadersHelmet adds CSP, X-Frame-Options, X-Content-Type-Options, and other headers to every response.
No Shared SecretThe pre-v1.4.7 shared secret requirement has been removed. The extension communicates directly with the local backend.

See SECURITY.md for the full threat model and vulnerability reporting policy.


Comparison with Alternatives

While tools like Mem0, Zep, and Letta focus heavily on providing memory APIs for agent developers, ArcRift is built directly for end-users and human-in-the-loop workflows.

FeatureArcRiftMem0ZepLetta (MemGPT)LangGraph
Primary AudienceEnd-users & DevsAgent DevsAgent DevsAgent DevsAgent Devs
Cross-Platform Chat UXYes (Injects directly into ChatGPT, Claude, etc)Bring your own UIBring your own UIBring your own UIBring your own UI
Visual Knowledge GraphYes (D3 Dashboard)API OnlyAPI OnlyNoOptional / Custom
Context Retrieval PrecisionSurgical Sentence Trimming (95% noise reduction)Full ChunkFull ChunkFull ChunkVaries by implementation
Setup Complexity1 command (npx)Requires DB / APIRequires DB / DockerDocker / Python envCode-heavy (Framework)
Storage BackendSQLite (Zero config)PostgreSQL / QdrantPostgreSQL / RedisPostgreSQL / ChromaAny (BYO Database)
Local vs Cloud100% Local (Ollama)Cloud-first (Local avail)BothBothBoth
Native IDE IntegrationYes (via MCP)API OnlyAPI OnlyAPI OnlyAPI Only
MCP SupportYesYesYesYesYes
LicenseMITApache 2.0Apache 2.0Apache 2.0MIT

What’s New in v1.6.1

This release marks ArcRift’s transition from a CLI-based tool to a fully native, highly-optimized desktop application, alongside a brand new Local Codebase Indexing feature.

  • Native Tauri Desktop App: ArcRift now runs as a lightweight native desktop application that lives quietly in your system tray. The backend operates seamlessly as a hidden Rust sidecar process, drastically improving performance and user experience.
  • Direct Codebase Indexing: You can now point ArcRift directly at any local folder. It will scan, chunk, embed, and ingest your entire codebase into its Knowledge Graph instantly, allowing you to query massive projects effortlessly.
  • Esbuild Backend Engine: The backend compiler was completely swapped from TypeScript to Esbuild, bringing start times down from over 60 seconds to ~0.1 seconds.
  • GitHub Actions Auto-Releases: Full CI/CD pipeline integrated to automatically cross-compile installers for Mac, Windows, and Linux on every release.

(Note: If you were testing v1.6.0-beta locally, all changes are included in this stable v1.6.1 release).

See CHANGELOG.md for the full history.


Documentation

FileDescription
ARCHITECTURE.mdData flow, storage schema, environment variables
RAG_PIPELINE.mdRetrieval pipeline, scoring, threshold tuning
MCP_SETUP.mdMCP setup guide for all supported tools
PLATFORM_SELECTORS.mdDOM resolver system, adding new platforms
SECURITY.mdThreat model, vulnerability reporting
SELF_HOSTING.mdPorts, passwords, backups, reverse proxy
CONTRIBUTING.mdFork workflow, commit format, adding platforms
CHANGELOG.mdFull version history
TROUBLESHOOTING.mdCommon issues and fixes

Contributing

Bug fixes, new platform support, UI improvements, and test coverage are all welcome.

Contributing Guide · Code of Conduct

Good first issues: good first issue


License

MIT — see LICENSE.



Stop re-explaining yourself. Give your AI the memory it should have had from day one.

Built by Eshaan Nair

相似文章

@WY_mask: 给各类 AI 编程助手打造持久化记忆引擎 http://github.com/rohitg00/agentmemory… 在后台静默记录代码修改和上下文 自动提取并压缩成结构化记忆 节省长上下文带来的 Token 消耗 关联过去的信息,随…

X AI KOLs Timeline

agentmemory 是一个为 AI 编程助手提供持久化记忆的开源工具,能静默记录代码修改和上下文,自动提取并压缩成结构化记忆,降低 Token 消耗,并支持 Claude Code、Codex 等多种主流平台。

@teach_fireworks: 别让 AI Agent 第二次踩同一个坑。 最近看到一个挺有意思的开源项目:RoBrain https://github.com/adelinamart/robrain… RoBrain 是 AI 编程团队的“决策记忆层”,专门记录一次次…

X AI KOLs Timeline

RoBrain is an open-source shared memory layer for AI coding teams that captures technical decisions, rationale, and rejected alternatives across sessions and tools like Claude Code, Cursor, and Copilot, preventing agents from repeating past mistakes.

@XAMTO_AI: 卧槽!刚发现个逆天插件,装完打开网页直接透视技术栈! 前端框架、后端、CDN全扒出来,点名字还能跳到官网。AI时代连摸个底都这么卷了? 速度上车研究,别等别人卷死你才反应过来。 https://github.com/setube/stac…

X AI KOLs Timeline

介绍 StackPrism(栈棱镜)浏览器扩展,可自动识别网页使用的前端框架、后端、CDN 等技术栈,支持 Chrome/Edge/Firefox,基于 Manifest V3 架构,通过多种渠道收集线索并分类展示。