vektor-slipstream 1.4.5 → 2.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +67 -306
  2. package/package.json +14 -146
package/README.md CHANGED
@@ -1,306 +1,67 @@
1
- # vektor-slipstream
2
-
3
- Hardware-accelerated persistent memory for AI agents. Local-first. No cloud. One-time payment.
4
-
5
- [![npm](https://img.shields.io/npm/v/vektor-slipstream)](https://www.npmjs.com/package/vektor-slipstream)
6
- [![downloads](https://img.shields.io/npm/dw/vektor-slipstream)](https://www.npmjs.com/package/vektor-slipstream)
7
- [![license](https://img.shields.io/badge/license-Commercial-blue)](https://vektormemory.com/product#pricing)
8
-
9
- ## Install
10
-
11
- ```bash
12
- npm install vektor-slipstream
13
- npx vektor setup
14
- ```
15
-
16
- ## Quick Start
17
-
18
- ```js
19
- const { createMemory } = require('vektor-slipstream');
20
-
21
- const memory = await createMemory({
22
- agentId: 'my-agent',
23
- licenceKey: process.env.VEKTOR_LICENCE_KEY,
24
- });
25
-
26
- // Store a memory
27
- await memory.remember('User prefers TypeScript over JavaScript');
28
-
29
- // Recall by semantic similarity — avg 8ms, fully local
30
- const results = await memory.recall('coding preferences', 5);
31
- // → [{ content, score, id }]
32
-
33
- // Traverse the graph
34
- const graph = await memory.graph('TypeScript', { hops: 2 });
35
-
36
- // What changed in 7 days?
37
- const delta = await memory.delta('project decisions', 7);
38
-
39
- // Morning briefing
40
- const brief = await memory.briefing();
41
- ```
42
-
43
- ---
44
-
45
- ## CLI Chat Persistent Memory Terminal
46
-
47
- Chat with any LLM with full memory across every session. Zero configuration.
48
-
49
- ```bash
50
- npx vektor chat # start chat (auto-detects Ollama)
51
- npx vektor chat --provider claude # use Anthropic Claude
52
- npx vektor chat --provider groq --model llama-3.3-70b-versatile
53
- npx vektor chat --provider gemini
54
- npx vektor chat --provider openai
55
- ```
56
-
57
- ### Providers
58
-
59
- | Provider | Details |
60
- |---|---|
61
- | `ollama` | Default — free, local, no API key. Auto-detects best installed model. |
62
- | `claude` | Anthropic Claude — set `ANTHROPIC_API_KEY` |
63
- | `openai` | OpenAI GPT — set `OPENAI_API_KEY` |
64
- | `groq` | Groq LLaMA — set `GROQ_API_KEY` (free tier available) |
65
- | `gemini` | Google Gemini — set `GEMINI_API_KEY` |
66
-
67
- Set a permanent default:
68
- ```bash
69
- # Windows
70
- $env:VEKTOR_PROVIDER = "claude"
71
-
72
- # macOS/Linux
73
- export VEKTOR_PROVIDER=claude
74
- ```
75
-
76
- ### In-chat commands
77
-
78
- Type `/` to see available commands with autocomplete. Tab to select, arrow keys to navigate.
79
-
80
- | Command | Action |
81
- |---|---|
82
- | `/recall <query>` | Search MAGMA memory mid-conversation |
83
- | `/stats` | Show memory node count, edges, pinned |
84
- | `/briefing` | Generate memory briefing inline |
85
- | `/exit` | Exit chat (Ctrl+C also works) |
86
-
87
- ### One-liner commands
88
-
89
- ```bash
90
- # Store a fact
91
- npx vektor remember "I prefer TypeScript over JavaScript"
92
- npx vektor remember "deadline is Friday" --importance 5
93
-
94
- # Pipe support
95
- cat meeting-notes.txt | npx vektor remember
96
-
97
- # One-shot recall + LLM answer
98
- npx vektor ask "what stack am I using?"
99
- npx vektor ask "what did we decide about the database?"
100
-
101
- # Autonomous goal executor
102
- npx vektor agent "summarise everything I know about project Alpha"
103
- npx vektor agent "research AI memory tools" --steps 15 --provider groq
104
- ```
105
-
106
- ### Ollama auto-detection
107
-
108
- VEKTOR queries `http://localhost:11434/api/tags` and picks the best available model:
109
- `qwen3` → `qwen2` → `llama` → `mistral` → first available.
110
-
111
- Override:
112
- ```bash
113
- $env:OLLAMA_MODEL = "qwen3.5:4b"
114
- export OLLAMA_MODEL=qwen3.5:4b
115
- ```
116
-
117
- ---
118
-
119
- ## All CLI Commands
120
-
121
- ```bash
122
- npx vektor setup # First-run wizard — licence, hardware, integrations
123
- npx vektor activate # Activate licence key on this machine
124
- npx vektor test # Test memory engine with progress bar
125
- npx vektor status # System health check
126
- npx vektor mcp # Start Claude Desktop MCP server
127
- npx vektor rem # Run REM dream cycle
128
- npx vektor chat # Persistent memory chat (all LLMs)
129
- npx vektor remember # Store a fact
130
- npx vektor ask # Query memory + LLM answer
131
- npx vektor agent # Autonomous goal executor
132
- npx vektor help # All commands
133
- ```
134
-
135
- ---
136
-
137
- ## Claude Desktop Extension (DXT)
138
-
139
- Install the `.dxt` extension for zero-config memory in every Claude Desktop session.
140
-
141
- **Install:** drag `vektor-slipstream.dxt` onto the Claude Desktop Extensions page.
142
-
143
- Once installed, Claude automatically:
144
- - Recalls relevant context at session start
145
- - Stores facts and decisions during conversation
146
- - Summarises at session end
147
-
148
- All 28 tools are available in Claude Desktop — no configuration needed beyond your licence key.
149
-
150
- **User config fields:**
151
-
152
- | Field | Purpose |
153
- |---|---|
154
- | `licence_key` | Your Polar licence key (required) |
155
- | `db_path` | Memory DB path (defaults to `~/vektor-slipstream-memory.db`) |
156
- | `project_path` | Default path for `cloak_cortex` project scanning (optional) |
157
-
158
- Download the latest `.dxt` from [vektormemory.com/docs/dxt](https://vektormemory.com/docs/dxt).
159
-
160
- ---
161
-
162
- ## MCP Tools — All 28
163
-
164
- ### Memory Tools
165
-
166
- | Tool | Function |
167
- |---|---|
168
- | `vektor_recall` | Semantic search across MAGMA graph |
169
- | `vektor_store` | Store memory with importance score |
170
- | `vektor_graph` | Traverse associative memory graph |
171
- | `vektor_delta` | See what changed on a topic over time |
172
- | `vektor_briefing` | Generate morning briefing from recent memories |
173
-
174
- ### CLOAK Core
175
-
176
- | Tool | Function |
177
- |---|---|
178
- | `cloak_fetch` | Stealth headless browser fetch via Playwright |
179
- | `cloak_fetch_smart` | Checks `llms.txt` first, falls back to stealth browser |
180
- | `cloak_render` | Full CSS/DOM layout sensor |
181
- | `cloak_diff` | Semantic diff of URL since last fetch |
182
- | `cloak_diff_text` | Structural diff between two text blobs |
183
- | `cloak_passport` | AES-256-GCM credential vault (get/set/delete/list) |
184
- | `tokens_saved` | Token efficiency ROI calculator |
185
-
186
- ### Identity Tools
187
-
188
- | Tool | Function |
189
- |---|---|
190
- | `cloak_identity_create` | Create persistent browser fingerprint identity |
191
- | `cloak_identity_use` | Apply saved identity to a fetch call |
192
- | `cloak_identity_list` | List all saved identities with trust summary |
193
-
194
- ### Behaviour Tools
195
-
196
- | Tool | Function |
197
- |---|---|
198
- | `cloak_inject_behaviour` | Human mouse/scroll injection for reCAPTCHA/Cloudflare bypass |
199
- | `cloak_behaviour_stats` | List available patterns and categories |
200
- | `cloak_load_pattern` | Load custom recorded behaviour pattern |
201
- | `cloak_pattern_stats` | Self-improving pattern store tier breakdown |
202
- | `cloak_pattern_list` | List patterns with scores and tier |
203
- | `cloak_pattern_prune` | Remove stale/low-scoring patterns |
204
- | `cloak_pattern_seed` | Seed store with built-in patterns |
205
-
206
- ### CAPTCHA Tools
207
-
208
- | Tool | Function |
209
- |---|---|
210
- | `cloak_detect_captcha` | Detect CAPTCHA type and sitekey |
211
- | `cloak_solve_captcha` | Solve via vision AI (Claude/GPT-4o/2captcha) |
212
-
213
- ### Compression & Cortex Tools
214
-
215
- | Tool | Function |
216
- |---|---|
217
- | `turbo_quant_compress` | PolarQuant vector compression (~75% smaller) |
218
- | `turbo_quant_stats` | Compression ratio and savings stats |
219
- | `cloak_cortex` | Scan project directory into MAGMA entity graph |
220
- | `cloak_cortex_anatomy` | Get cached file anatomy without rescanning |
221
-
222
- ---
223
-
224
- ## Claude Code Setup
225
-
226
- Add to `.claude/settings.json` in your project:
227
-
228
- ```json
229
- {
230
- "mcpServers": {
231
- "vektor": {
232
- "command": "node",
233
- "args": ["/path/to/node_modules/vektor-slipstream/index.js"],
234
- "env": {
235
- "VEKTOR_LICENCE_KEY": "your-licence-key",
236
- "CLOAK_PROJECT_PATH": "/path/to/your/project"
237
- }
238
- }
239
- }
240
- }
241
- ```
242
-
243
- All 28 tools are available in Claude Code via this config.
244
-
245
- ---
246
-
247
- ## What's Included
248
-
249
- ### Memory Core (MAGMA)
250
-
251
- - 4-layer associative graph — semantic, causal, temporal, entity
252
- - AUDN curation loop — zero contradictions, zero duplicates
253
- - REM dream cycle — up to 50:1 compression
254
- - Sub-20ms recall — HNSW index, local SQLite
255
- - Local ONNX embeddings — $0 embedding cost, no API key required
256
-
257
- ### Integrations
258
-
259
- - **Claude Desktop** — DXT extension, 28 tools, auto-memory system prompt
260
- - **Claude Code** — MCP server, all 28 tools
261
- - **CLI** — `chat`, `remember`, `ask`, `agent` commands
262
- - **LangChain** — v1 + v2 adapter included
263
- - **OpenAI Agents SDK** — drop-in integration
264
- - **Gemini · Groq · Ollama** — provider agnostic
265
-
266
- ---
267
-
268
- ## Performance
269
-
270
- | Metric | Value |
271
- |---|---|
272
- | Recall latency | ~8ms avg (local SQLite) |
273
- | Embedding cost | $0 — fully local ONNX |
274
- | Embedding latency | ~10ms GPU / ~25ms CPU |
275
- | First run | ~2 min (downloads ~25MB model once) |
276
- | Subsequent boots | <100ms |
277
-
278
- ## Hardware Auto-Detection
279
-
280
- Zero config. VEKTOR detects and uses the best available accelerator:
281
-
282
- - **NVIDIA CUDA** — GPU acceleration
283
- - **Apple Silicon** — CoreML
284
- - **CPU** — optimised fallback, works everywhere
285
-
286
- ---
287
-
288
- ## Licence
289
-
290
- Commercial licence. One-time payment of $159. Activates on up to 3 machines.
291
- Manage at [polar.sh](https://polar.sh).
292
-
293
- Purchase: [vektormemory.com/product#pricing](https://vektormemory.com/product#pricing)
294
- Docs: [vektormemory.com/docs](https://vektormemory.com/docs)
295
- Support: hello@vektormemory.com
296
-
297
- ---
298
-
299
- ## Research
300
-
301
- Built on peer-reviewed research:
302
-
303
- - [MAGMA (arxiv:2601.03236)](https://arxiv.org/abs/2601.03236) — Multi-Graph Agentic Memory Architecture
304
- - [EverMemOS (arxiv:2601.02163)](https://arxiv.org/abs/2601.02163) — Self-Organizing Memory OS
305
- - [HippoRAG (arxiv:2405.14831)](https://arxiv.org/abs/2405.14831) — Neurobiologically Inspired Long-Term Memory (NeurIPS 2024)
306
- - [Mem0 (arxiv:2504.19413)](https://arxiv.org/abs/2504.19413) — Production-Ready Agent Memory
1
+ # vektor-slipstream
2
+
3
+ Hardware-accelerated persistent memory for AI agents. Local-first. No cloud. One-time payment.
4
+
5
+ [![license](https://img.shields.io/badge/license-Commercial-blue)](https://vektormemory.com/product)
6
+ [![website](https://img.shields.io/badge/website-vektormemory.com-black)](https://vektormemory.com)
7
+
8
+ ---
9
+
10
+ ## ⚠️ This package is a directory listing only
11
+
12
+ **The SDK is not distributed via npm.**
13
+
14
+ Purchase and download directly from:
15
+
16
+ ### 👉 [vektormemory.com/product](https://vektormemory.com/product)
17
+
18
+ ---
19
+
20
+ ## What is VEKTOR Slipstream?
21
+
22
+ Persistent memory for AI agents — local, fast, private.
23
+
24
+ - **MAGMA graph** — 4-layer associative memory (semantic · causal · temporal · entity)
25
+ - **Sub-8ms recall** — HNSW index, local SQLite, no API calls
26
+ - **42 MCP tools** — plug directly into Claude Desktop or Claude Code
27
+ - **Zero cloud** ONNX embeddings run 100% on your hardware
28
+ - **One-time payment** — $159, activates on up to 3 machines
29
+
30
+ ---
31
+
32
+ ## Integrations
33
+
34
+ - Claude Desktop (DXT extension, auto-memory)
35
+ - Claude Code (MCP server)
36
+ - CLI `chat`, `remember`, `ask`, `agent`
37
+ - LangChain, OpenAI Agents SDK, Gemini, Groq, Ollama
38
+
39
+ ---
40
+
41
+ ## Performance
42
+
43
+ | Metric | Value |
44
+ |---|---|
45
+ | Recall latency | ~8ms avg (local SQLite) |
46
+ | Embedding cost | $0 — fully local ONNX |
47
+ | First run | ~2 min (downloads ~25MB model once) |
48
+ | Subsequent boots | <100ms |
49
+
50
+ ---
51
+
52
+ ## Get Started
53
+
54
+ 1. Purchase at **[vektormemory.com/product](https://vektormemory.com/product)**
55
+ 2. Download the SDK from your licence dashboard
56
+ 3. Follow the setup guide at **[vektormemory.com/docs](https://vektormemory.com/docs)**
57
+
58
+ ---
59
+
60
+ ## Links
61
+
62
+ | | |
63
+ |---|---|
64
+ | **Purchase** | [vektormemory.com/product](https://vektormemory.com/product) |
65
+ | **Docs** | [vektormemory.com/docs](https://vektormemory.com/docs) |
66
+ | **Research** | [vektormemory.com/research](https://vektormemory.com/research) |
67
+ | **Support** | hello@vektormemory.com |
package/package.json CHANGED
@@ -1,146 +1,14 @@
1
- {
2
- "name": "vektor-slipstream",
3
- "version": "1.4.5",
4
- "description": "Hardware-accelerated persistent memory for AI agents. Local-first, zero cloud dependency, $0 embedding cost.",
5
- "main": "slipstream-core-extended.js",
6
- "types": "./types/index.d.ts",
7
- "bin": {
8
- "vektor": "vektor-cli.js"
9
- },
10
- "exports": {
11
- ".": {
12
- "types": "./types/index.d.ts",
13
- "default": "./slipstream-core-extended.js"
14
- },
15
- "./cloak": "./cloak-index.js",
16
- "./cloak-warmup": "./cloak-warmup.js",
17
- "./db": "./slipstream-db.js",
18
- "./embedder": "./slipstream-embedder.js",
19
- "./cloak-behaviour": "./cloak-behaviour.js",
20
- "./cloak-pattern-store": "./cloak-pattern-store.js",
21
- "./cloak-recorder-auto": "./cloak-recorder-auto.js",
22
- "./cloak-recorder-snippet": "./cloak-recorder-snippet.js",
23
- "./cloak-turbo-quant": "./cloak-turbo-quant.js",
24
- "./cloak/cortex": "./cortex.js",
25
- "./cloak/axon": "./axon.js",
26
- "./cloak/cerebellum": "./cerebellum.js",
27
- "./cloak/token": "./token.js",
28
- "./cloak/mcp": "./index.js",
29
- "./boot": "./boot-patch.js",
30
- "./errors": "./errors.js",
31
- "./entity-resolver": "./entity-resolver.js"
32
- },
33
- "keywords": [
34
- "ai",
35
- "memory",
36
- "agent",
37
- "vector",
38
- "sqlite",
39
- "embeddings",
40
- "langchain",
41
- "openai",
42
- "anthropic",
43
- "claude",
44
- "mcp",
45
- "rag",
46
- "persistent-memory",
47
- "local-ai",
48
- "onnx",
49
- "mistral",
50
- "cloak",
51
- "ai-agent-memory",
52
- "local-first",
53
- "knowledge-graph",
54
- "agentic-ai",
55
- "llm-memory",
56
- "vector-store",
57
- "associative-memory",
58
- "groq",
59
- "ollama",
60
- "gemini"
61
- ],
62
- "author": "VEKTOR Memory <hello@vektormemory.com>",
63
- "license": "SEE LICENSE IN LICENSE",
64
- "homepage": "https://vektormemory.com",
65
- "repository": {
66
- "type": "git",
67
- "url": "git+https://github.com/Vektor-Memory/Vektor-memory.git"
68
- },
69
- "engines": {
70
- "node": ">=18.0.0"
71
- },
72
- "dependencies": {
73
- "better-sqlite3": "^12.8.0",
74
- "onnxruntime-node": "^1.17.3",
75
- "vektor-slipstream": "^1.4.5"
76
- },
77
- "optionalDependencies": {
78
- "@anthropic-ai/sdk": "^0.82.0",
79
- "@xenova/transformers": "^2.17.2",
80
- "blessed": "^0.1.81",
81
- "blessed-contrib": "^4.11.0",
82
- "playwright": "^1.44.0",
83
- "sqlite-vec-darwin-arm64": "^0.1.6",
84
- "sqlite-vec-linux-x64": "^0.1.6",
85
- "sqlite-vec-windows-x64": "^0.1.6"
86
- },
87
- "files": [
88
- "slipstream-core.js",
89
- "slipstream-db.js",
90
- "slipstream-embedder.js",
91
- "detect-hardware.js",
92
- "vektor-licence.js",
93
- "vektor-licence-prompt.js",
94
- "vektor-cli.js",
95
- "vektor-setup.js",
96
- "vektor-banner-loader.js",
97
- "vektor-tui.js",
98
- "boot-screen.html",
99
- "cloak-core.js",
100
- "cloak-index.js",
101
- "cloak-identity.js",
102
- "cloak-captcha.js",
103
- "cloak-llms.js",
104
- "cloak-turbo-quant.js",
105
- "cloak-warmup.js",
106
- "cloak-behaviour.js",
107
- "cloak-recorder-snippet.js",
108
- "cloak-pattern-store.js",
109
- "cloak-recorder-auto.js",
110
- "sovereign.js",
111
- "visualize.js",
112
- "TENETS.md",
113
- "README.md",
114
- "CHANGELOG.md",
115
- "LICENSE",
116
- "cortex.js",
117
- "axon.js",
118
- "cerebellum.js",
119
- "token.js",
120
- "index.js",
121
- "errors.js",
122
- "forget.js",
123
- "pin.js",
124
- "briefing.js",
125
- "inspect.js",
126
- "audn-log.js",
127
- "namespace.js",
128
- "export-import.js",
129
- "migrate-137.js",
130
- "entity-resolver.js",
131
- "models/model_quantized.onnx",
132
- "models/vocab.json",
133
- "types/index.d.ts",
134
- "examples/",
135
- "mistral/",
136
- "vektor-slipstream.dxt",
137
- "boot-patch.js",
138
- "slipstream-core-extended.js"
139
- ],
140
- "publishConfig": {
141
- "access": "public"
142
- },
143
- "devDependencies": {
144
- "javascript-obfuscator": "^5.4.1"
145
- }
146
- }
1
+ {
2
+ "name": "vektor-slipstream",
3
+ "version": "2.0.0",
4
+ "description": "Hardware-accelerated persistent memory for AI agents. Purchase and download at vektormemory.com",
5
+ "keywords": ["memory", "ai", "agents", "mcp", "llm", "claude", "persistent-memory"],
6
+ "homepage": "https://vektormemory.com",
7
+ "bugs": { "url": "mailto:hello@vektormemory.com" },
8
+ "license": "SEE LICENSE IN https://vektormemory.com/product",
9
+ "author": "Vektor Memory <hello@vektormemory.com> (https://vektormemory.com)",
10
+ "repository": {
11
+ "type": "git",
12
+ "url": "https://github.com/Vektor-Memory/Vektor-memory"
13
+ }
14
+ }