cc-claw 0.24.1 → 0.24.2
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 +34 -2
- package/dist/cli.js +3258 -1190
- package/package.json +7 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "cc-claw",
|
|
3
|
-
"version": "0.24.
|
|
3
|
+
"version": "0.24.2",
|
|
4
4
|
"description": "CC-Claw: Personal AI assistant on Telegram — multi-backend (Claude, Gemini, Codex, Cursor), sub-agent orchestration, MCP management",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/cli.js",
|
|
@@ -18,7 +18,7 @@
|
|
|
18
18
|
},
|
|
19
19
|
"scripts": {
|
|
20
20
|
"build": "tsup",
|
|
21
|
-
"test": "vitest run",
|
|
21
|
+
"test": "node --max-old-space-size=4096 node_modules/.bin/vitest run",
|
|
22
22
|
"test:watch": "vitest",
|
|
23
23
|
"test:coverage": "vitest run --coverage",
|
|
24
24
|
"prepublishOnly": "npm run build",
|
|
@@ -38,12 +38,17 @@
|
|
|
38
38
|
],
|
|
39
39
|
"license": "MIT",
|
|
40
40
|
"dependencies": {
|
|
41
|
+
"@ai-sdk/mcp": "^1.0.32",
|
|
42
|
+
"@ai-sdk/openai": "^3.0.50",
|
|
43
|
+
"@ai-sdk/openai-compatible": "^2.0.38",
|
|
41
44
|
"@modelcontextprotocol/sdk": "^1.27.1",
|
|
45
|
+
"ai": "^6.0.146",
|
|
42
46
|
"better-sqlite3": "^12.8.0",
|
|
43
47
|
"commander": "^14.0.3",
|
|
44
48
|
"croner": "^9.0.0",
|
|
45
49
|
"dotenv": "^16.4.7",
|
|
46
50
|
"grammy": "^1.35.0",
|
|
51
|
+
"js-tiktoken": "^1.0.21",
|
|
47
52
|
"marked": "^9.1.6",
|
|
48
53
|
"picocolors": "^1.1.1",
|
|
49
54
|
"zod": "^4.3.6"
|