relavium 0.1.0 → 0.1.1
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/CHANGELOG.md +76 -0
- package/README.md +109 -27
- package/dist/index.js +82 -39
- package/package.json +15 -4
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "relavium",
|
|
3
|
-
"version": "0.1.
|
|
4
|
-
"description": "Relavium CLI
|
|
3
|
+
"version": "0.1.1",
|
|
4
|
+
"description": "The local-first Relavium CLI — run multi-model AI agent sessions and git-committable workflows from your terminal.",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"bin": {
|
|
@@ -9,15 +9,24 @@
|
|
|
9
9
|
},
|
|
10
10
|
"files": [
|
|
11
11
|
"dist",
|
|
12
|
-
"drizzle"
|
|
12
|
+
"drizzle",
|
|
13
|
+
"CHANGELOG.md"
|
|
13
14
|
],
|
|
14
15
|
"keywords": [
|
|
15
16
|
"relavium",
|
|
16
17
|
"ai",
|
|
17
18
|
"agent",
|
|
19
|
+
"ai-agent",
|
|
20
|
+
"multi-agent",
|
|
18
21
|
"workflow",
|
|
19
22
|
"cli",
|
|
20
|
-
"llm"
|
|
23
|
+
"llm",
|
|
24
|
+
"local-first",
|
|
25
|
+
"mcp",
|
|
26
|
+
"anthropic",
|
|
27
|
+
"openai",
|
|
28
|
+
"gemini",
|
|
29
|
+
"deepseek"
|
|
21
30
|
],
|
|
22
31
|
"repository": {
|
|
23
32
|
"type": "git",
|
|
@@ -32,6 +41,7 @@
|
|
|
32
41
|
"@clack/prompts": "^1.6.0",
|
|
33
42
|
"@google/genai": "^2.8.0",
|
|
34
43
|
"@jitl/quickjs-singlefile-mjs-release-sync": "^0.32.0",
|
|
44
|
+
"@modelcontextprotocol/sdk": "^1.29.0",
|
|
35
45
|
"@napi-rs/keyring": "^1.3.0",
|
|
36
46
|
"better-sqlite3": "^12.10.0",
|
|
37
47
|
"commander": "^12.1.0",
|
|
@@ -53,6 +63,7 @@
|
|
|
53
63
|
"vitest": "^3.0.0",
|
|
54
64
|
"@relavium/core": "0.0.0",
|
|
55
65
|
"@relavium/llm": "0.0.0",
|
|
66
|
+
"@relavium/mcp": "0.0.0",
|
|
56
67
|
"@relavium/db": "0.0.0",
|
|
57
68
|
"@relavium/shared": "0.0.0"
|
|
58
69
|
},
|