vektor-slipstream 1.1.2 → 1.1.4
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.
- package/package.json +90 -90
- package/vektor-banner-loader.js +1 -1
package/package.json
CHANGED
|
@@ -1,91 +1,91 @@
|
|
|
1
|
-
|
|
2
|
-
"name":
|
|
3
|
-
"version":
|
|
4
|
-
"description":
|
|
5
|
-
"main":
|
|
6
|
-
"bin":
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
"exports":
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
"keywords":
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
"author":
|
|
35
|
-
"license":
|
|
36
|
-
"homepage":
|
|
37
|
-
"repository":
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
"engines":
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
"dependencies":
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
"optionalDependencies":
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
"files":
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
"publishConfig":
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
"devDependencies":
|
|
89
|
-
|
|
90
|
-
|
|
1
|
+
{
|
|
2
|
+
"name": "vektor-slipstream",
|
|
3
|
+
"version": "1.1.4",
|
|
4
|
+
"description": "Hardware-accelerated persistent memory for AI agents. Local-first, zero cloud dependency, $0 embedding cost.",
|
|
5
|
+
"main": "slipstream-core.js",
|
|
6
|
+
"bin": {
|
|
7
|
+
"vektor": "./vektor-cli.js"
|
|
8
|
+
},
|
|
9
|
+
"exports": {
|
|
10
|
+
".": "./slipstream-core.js",
|
|
11
|
+
"./cloak": "./cloak.js",
|
|
12
|
+
"./db": "./slipstream-db.js",
|
|
13
|
+
"./embedder": "./slipstream-embedder.js"
|
|
14
|
+
},
|
|
15
|
+
"keywords": [
|
|
16
|
+
"ai",
|
|
17
|
+
"memory",
|
|
18
|
+
"agent",
|
|
19
|
+
"vector",
|
|
20
|
+
"sqlite",
|
|
21
|
+
"embeddings",
|
|
22
|
+
"langchain",
|
|
23
|
+
"openai",
|
|
24
|
+
"anthropic",
|
|
25
|
+
"claude",
|
|
26
|
+
"mcp",
|
|
27
|
+
"rag",
|
|
28
|
+
"persistent-memory",
|
|
29
|
+
"local-ai",
|
|
30
|
+
"onnx",
|
|
31
|
+
"mistral",
|
|
32
|
+
"cloak"
|
|
33
|
+
],
|
|
34
|
+
"author": "VEKTOR Memory <hello@vektormemory.com>",
|
|
35
|
+
"license": "SEE LICENSE IN LICENSE",
|
|
36
|
+
"homepage": "https://vektormemory.com",
|
|
37
|
+
"repository": {
|
|
38
|
+
"type": "git",
|
|
39
|
+
"url": "https://github.com/Vektor-Memory/Vektor-memory"
|
|
40
|
+
},
|
|
41
|
+
"engines": {
|
|
42
|
+
"node": ">=18.0.0"
|
|
43
|
+
},
|
|
44
|
+
"dependencies": {
|
|
45
|
+
"better-sqlite3": "^12.8.0",
|
|
46
|
+
"blessed": "^0.1.81",
|
|
47
|
+
"blessed-contrib": "^4.11.0",
|
|
48
|
+
"onnxruntime-node": "^1.17.3"
|
|
49
|
+
},
|
|
50
|
+
"optionalDependencies": {
|
|
51
|
+
"@anthropic-ai/sdk": "^0.82.0",
|
|
52
|
+
"@xenova/transformers": "^2.17.2",
|
|
53
|
+
"playwright": "^1.44.0",
|
|
54
|
+
"sqlite-vec-darwin-arm64": "^0.1.6",
|
|
55
|
+
"sqlite-vec-linux-x64": "^0.1.6",
|
|
56
|
+
"sqlite-vec-windows-x64": "^0.1.6",
|
|
57
|
+
"blessed": "^0.1.81",
|
|
58
|
+
"blessed-contrib": "^4.11.0"
|
|
59
|
+
},
|
|
60
|
+
"files": [
|
|
61
|
+
"slipstream-core.js",
|
|
62
|
+
"slipstream-db.js",
|
|
63
|
+
"slipstream-embedder.js",
|
|
64
|
+
"detect-hardware.js",
|
|
65
|
+
"vektor-licence.js",
|
|
66
|
+
"vektor-licence-prompt.js",
|
|
67
|
+
"vektor-cli.js",
|
|
68
|
+
"vektor-setup.js",
|
|
69
|
+
"vektor-banner-loader.js",
|
|
70
|
+
"vektor-tui.js",
|
|
71
|
+
"graph-viewer.html",
|
|
72
|
+
"boot-screen.html",
|
|
73
|
+
"cloak.js",
|
|
74
|
+
"sovereign.js",
|
|
75
|
+
"visualize.js",
|
|
76
|
+
"TENETS.md",
|
|
77
|
+
"README.md",
|
|
78
|
+
"LICENSE",
|
|
79
|
+
"models/",
|
|
80
|
+
"examples/",
|
|
81
|
+
"mistral/",
|
|
82
|
+
"vektor-tui.js",
|
|
83
|
+
"graph-viewer.html"
|
|
84
|
+
],
|
|
85
|
+
"publishConfig": {
|
|
86
|
+
"access": "public"
|
|
87
|
+
},
|
|
88
|
+
"devDependencies": {
|
|
89
|
+
"javascript-obfuscator": "^5.4.1"
|
|
90
|
+
}
|
|
91
91
|
}
|
package/vektor-banner-loader.js
CHANGED
|
@@ -13,7 +13,7 @@ console.log(' \u255a\u2588\u2588\u2557 \u2588\u2588\u2554\u255d\u2588\u2588\u25
|
|
|
13
13
|
console.log(' \u255a\u2588\u2588\u2588\u2588\u2554\u255d \u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2557\u2588\u2588\u2551 \u2588\u2588\u2557 \u2588\u2588\u2551 \u255a\u2588\u2588\u2588\u2588\u2588\u2554\u255d\u2588\u2588\u2551 \u2588\u2588\u2551 ');
|
|
14
14
|
console.log(' \u255a\u2550\u2550\u2550\u255d \u255a\u2550\u2550\u2550\u2550\u2550\u2550\u255d\u255a\u2550\u255d \u255a\u2550\u255d \u255a\u2550\u255d \u255a\u2550\u2550\u2550\u2550\u255d \u255a\u2550\u255d \u255a\u2550\u255d ');
|
|
15
15
|
console.log('');
|
|
16
|
-
console.log(' SLIPSTREAM
|
|
16
|
+
console.log(' SLIPSTREAM v' + require('./package.json').version + ' \u00b7 Sovereign Agent Memory');
|
|
17
17
|
console.log(' \u2514\u2500 Loading... (first run downloads ~25MB model \u2014 one time only)');
|
|
18
18
|
console.log('');
|
|
19
19
|
|