@qxbyte/muse 0.1.3 → 0.2.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.
- package/README.md +101 -37
- package/dist/cli.js +6610 -1283
- package/dist/cli.js.map +1 -1
- package/dist/index.js +2232 -280
- package/dist/index.js.map +1 -1
- package/package.json +11 -3
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@qxbyte/muse",
|
|
3
|
-
"version": "0.
|
|
4
|
-
"description": "
|
|
3
|
+
"version": "0.2.0",
|
|
4
|
+
"description": "TypeScript agent CLI with built-in permission gating, long-term memory (project + user dual-scope) and optional vector recall (OpenAI / DashScope / Zhipu / Ollama / local-transformers). First-class support for self-hostable and Chinese LLMs (DeepSeek, Qwen, Kimi, GLM, Ollama, MiMo).",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"homepage": "https://github.com/qxbyte/muse#readme",
|
|
@@ -20,8 +20,14 @@
|
|
|
20
20
|
"ink",
|
|
21
21
|
"deepseek",
|
|
22
22
|
"qwen",
|
|
23
|
+
"kimi",
|
|
24
|
+
"glm",
|
|
23
25
|
"ollama",
|
|
24
|
-
"openai-compatible"
|
|
26
|
+
"openai-compatible",
|
|
27
|
+
"memory",
|
|
28
|
+
"embedding",
|
|
29
|
+
"vector-search",
|
|
30
|
+
"long-term-memory"
|
|
25
31
|
],
|
|
26
32
|
"bin": {
|
|
27
33
|
"muse": "./dist/cli.js"
|
|
@@ -53,6 +59,7 @@
|
|
|
53
59
|
"@ai-sdk/openai": "^1.0.0",
|
|
54
60
|
"@ai-sdk/openai-compatible": "^0.1.0",
|
|
55
61
|
"ai": "^4.0.0",
|
|
62
|
+
"cli-highlight": "^2.1.11",
|
|
56
63
|
"commander": "^12.1.0",
|
|
57
64
|
"diff": "^7.0.0",
|
|
58
65
|
"execa": "^9.5.0",
|
|
@@ -60,6 +67,7 @@
|
|
|
60
67
|
"ink": "^5.0.1",
|
|
61
68
|
"ink-spinner": "^5.0.0",
|
|
62
69
|
"ink-text-input": "^6.0.0",
|
|
70
|
+
"js-tiktoken": "^1.0.21",
|
|
63
71
|
"marked": "^15.0.12",
|
|
64
72
|
"marked-terminal": "^7.3.0",
|
|
65
73
|
"pino": "^9.5.0",
|