Local-first vector memory with a self-organising 4-layer graph. Spec-decoding retrieval. Zettelkasten-linked edges.
Conversation turns, tool outputs, observations. Any unstructured agent context fed in as text.
Every memory is evaluated: ADD new info, UPDATE existing, DELETE contradictions, or NO_OP if already known. Zero duplicates.
Persisted across 4 graph types in SQLite. Survives all session resets. REM cycle compresses while idle.
Similarity between memories. Finds related concepts across your full context history.
Cause → Effect relationships. Understands why things happened, not just what.
Before → After sequences. Tracks how knowledge evolves and decays over time.
Named entity co-occurrence. Connects people, projects, and events automatically.
Most vector stores are passive. They store what you put in and return what you ask for. VEKTOR is an active memory layer — it evolves, curates, and reasons about what your agent should remember.
Standard RAG vector stores
VEKTOR Memory
Drop-in memory layer for LangChain agents.
recall() returns context, remember() stores.
v1 + v2 adapters included.
Persistent memory for OpenAI agent loops.
Recalled context injected into system prompt.
GPT-4o and o-series models supported.
Full MCP module — vektor_recall, vektor_store,
vektor_graph, vektor_delta tools.
Connect Claude Desktop in minutes.
Provider-agnostic single config switch.
Key pooling for Gemini — up to 9 API keys,
waterfall rotation, zero rate-limit downtime.
vektor_memoire HTTP tool for Le Chat
and Mistral API agents. Local bridge on
localhost:3847. French-first sovereign memory.
28-tool MCP layer for Claude Desktop.
Stealth browser, credential vault, CAPTCHA solving,
behaviour injection. Zero cloud. One install.
Most vector stores are passive. They store what you put in and return what you ask for. VEKTOR is an active memory layer — it evolves, curates, and reasons about what your agent should remember.
Standard RAG vector stores
VEKTOR Memory
Drop-in memory layer for LangChain agents.
recall() returns context, remember() stores.
v1 + v2 adapters included.
Persistent memory for OpenAI agent loops.
Recalled context injected into system prompt.
GPT-4o and o-series models supported.
Full MCP module — vektor_recall, vektor_store,
vektor_graph, vektor_delta tools.
Connect Claude Desktop in minutes.
Provider-agnostic single config switch.
Key pooling for Gemini — up to 9 API keys,
waterfall rotation, zero rate-limit downtime.
vektor_memoire HTTP tool for Le Chat
and Mistral API agents. Local bridge on
localhost:3847. French-first sovereign memory.
28-tool MCP layer for Claude Desktop.
Stealth browser, credential vault, CAPTCHA solving,
behaviour injection. Zero cloud. One install.
Visualise your agent’s memory as a live D3 force graph. 147+ nodes across semantic, causal, temporal, and entity layers. Three themes: Dark, Mid, Light. Starts automatically on boot.
/graph · /dash · /dashboard
Configure providers, API keys, and models from a browser interface. Visual model picker across all 6 providers. Export a complete .env file. Config hot-reloads into CLI within 2 seconds — no restart needed.
Claude · OpenAI · Groq · Gemini · Mistral · Ollama · OpenRouter
// 1. Install
// npm install vektor-slipstream
import { createMemory } from 'vektor-slipstream';
// 2. Initialise
const memory = await createMemory({
provider: 'gemini',
apiKey: process.env.GEMINI_API_KEY,
agentId: 'my-agent',
dbPath: './my-agent.db',
});
// 3. Remember — AUDN decides ADD/UPDATE/DELETE
await memory.remember("User prefers TypeScript");
// 4. Recall
const ctx = await memory.recall("coding preferences");
// 5. Traverse the graph
const g = await memory.graph("TypeScript", { hops: 2 });
// 6. What changed in 7 days?
const d = await memory.delta("architecture", 7);
Pure SQLite. No cloud dependency, no API keys for memory. Your memory graph never leaves your server. LLM providers process queries per their own privacy policies.
Claude, Gemini, Groq, Mistral, OpenAI, Ollama, OpenRouter. Switch provider with one config change. Key pooling for Gemini — waterfall rotation across up to 9 keys.
Automatic curation loop prevents contradictions and duplicates. The graph stays consistent without any manual management.
Background process compresses 50 fragments into 3 core insights. Runs while your agent is idle. Run via vektor rem from the CLI.
The graph type system underpinning VEKTOR's four memory layers — semantic, causal, temporal, and entity.
GRAPH ARCHITECTURE ARXIV // 2601.02163Self-organizing memory architecture for structured long-horizon reasoning. Informs VEKTOR's REM cycle approach to memory consolidation and lifecycle management across extended agent sessions.
MEMORY LIFECYCLE ARXIV // 2504.19413Scalable long-term memory via dynamic extraction, consolidation, and graph-based retrieval. Informs VEKTOR's AUDN curation loop and REM compression cycle. Mem0 benchmarks show 90%+ token cost reduction — consistent with VEKTOR's synthesis approach.
MEMORY COMPRESSION LETTA.COMThe memory-as-OS paradigm that inspired VEKTOR's approach to agent context management and recall.
AGENT OSCloud memory APIs charge twice: a subscription for the service, and an embedding API fee on every single store and recall operation. Those embedding calls add up fast — at production agent volume they often exceed the subscription itself. VEKTOR runs on your machine and routes through the LLM provider you already pay for. No second bill. No hidden meter.
Cross-standard vector DB migration. Export, import, and migrate agent memory between any vector store using the open .vmig.jsonl interchange format. One file. Any store. No lock-in.
npx vex migrate --from vektor --to qdrant
| STORE | EXPORT | IMPORT |
|---|---|---|
| vektor | ✓ | ✓ |
| jsonl | ✓ | ✓ |
| pinecone | ✓ | ✓ |
| qdrant | ✓ | ✓ |
| chroma | ✓ | ✓ |
| weaviate | ✓ | ✓ |
| pgvector | ✓ | ✓ |
Translate vectors between embedding model spaces using pre-trained linear projection weights — no API calls, no re-embedding, pure matrix multiply. Switch models without losing your memory.
npm install -g @vektormemory/vex-adapter
Keep your MCP server configurations in sync across every AI editor you use. One source of truth for all your mcp.json configs. Edit once, sync everywhere. No drift, no duplication.
npm install -g @vektormemory/vek-sync
Your MCP credentials — API keys, tokens, secrets — are encrypted at rest using AES-256-GCM with OS-bound key derivation. No plaintext config files. No secrets in git. Credentials travel with the sync, not around it.
| EDITOR | CONFIG PATH | SYNC |
|---|---|---|
| Claude Desktop | Claude Desktop app | ✓ |
| Cursor | Cursor editor | ✓ |
| VS Code | .vscode/mcp.json | ✓ |
| Windsurf | Windsurf by Codeium | ✓ |
| Claude Code | Claude Code CLI | ✓ |
| Cline | saoudrizwan.claude-dev | ✓ |
| Roo Code | rooveterinaryinc.roo-cline | ✓ |
| Gemini | Gemini CLI | ✓ |
| Copilot | GitHub Copilot CLI | ✓ |
| Continue | continue.continue | ✓ |
| Codex | Codex CLI — TOML | ✓ |
How Vek-Sync eliminates config drift across every AI editor on your machine.
No cloud. No embedding bill. No data handshake.
VEKTOR runs on your machine, under your control, permanently.
Your memory graph is a portable SQLite file — no lock-in, ever.