codesavant 3.4.0 → 3.4.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/README.md +968 -0
- package/dist/cli.js +53009 -49734
- package/package.json +19 -4
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "codesavant",
|
|
3
|
-
"version": "3.4.
|
|
4
|
-
"description": "AI-powered coding assistant CLI
|
|
3
|
+
"version": "3.4.1",
|
|
4
|
+
"description": "AI-powered coding assistant CLI with Claude, GPT-4, and 10+ AI providers. Features streaming responses, 20+ tools, session management, and beautiful terminal UI.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/cli.js",
|
|
7
7
|
"bin": {
|
|
@@ -13,14 +13,18 @@
|
|
|
13
13
|
"test:watch": "bun test --watch",
|
|
14
14
|
"test:coverage": "bun test --coverage",
|
|
15
15
|
"build": "bun build src/cli.ts --outdir=dist --target=bun",
|
|
16
|
+
"prepublishOnly": "bun run build",
|
|
16
17
|
"lint": "bunx @biomejs/biome check src/",
|
|
17
18
|
"format": "bunx @biomejs/biome format --write src/",
|
|
18
19
|
"runbook:verify": "bun scripts/runbook-verify.ts"
|
|
19
20
|
},
|
|
20
21
|
"dependencies": {
|
|
22
|
+
"@google-cloud/vertexai": "^1.10.0",
|
|
23
|
+
"chalk": "^5.6.2",
|
|
24
|
+
"commander": "^12.0.0",
|
|
21
25
|
"ink": "^5.0.0",
|
|
22
26
|
"react": "^18.2.0",
|
|
23
|
-
"
|
|
27
|
+
"simple-git": "^3.30.0",
|
|
24
28
|
"zod": "^3.22.0"
|
|
25
29
|
},
|
|
26
30
|
"devDependencies": {
|
|
@@ -39,10 +43,21 @@
|
|
|
39
43
|
"keywords": [
|
|
40
44
|
"cli",
|
|
41
45
|
"ai",
|
|
46
|
+
"assistant",
|
|
42
47
|
"coding-assistant",
|
|
43
48
|
"bun",
|
|
44
49
|
"llm",
|
|
45
|
-
"
|
|
50
|
+
"claude",
|
|
51
|
+
"gpt-4",
|
|
52
|
+
"anthropic",
|
|
53
|
+
"openai",
|
|
54
|
+
"developer-tools",
|
|
55
|
+
"terminal",
|
|
56
|
+
"repl",
|
|
57
|
+
"copilot",
|
|
58
|
+
"gemini",
|
|
59
|
+
"groq",
|
|
60
|
+
"deepseek"
|
|
46
61
|
],
|
|
47
62
|
"engines": {
|
|
48
63
|
"bun": ">=1.0.0"
|