codesavant 2.3.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.
Files changed (3) hide show
  1. package/README.md +928 -64
  2. package/dist/cli.js +22122 -15709
  3. package/package.json +22 -6
package/package.json CHANGED
@@ -1,11 +1,11 @@
1
1
  {
2
2
  "name": "codesavant",
3
- "version": "2.3.0",
4
- "description": "AI-powered coding assistant CLI built on Bun",
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": {
8
- "codesavant": "dist/cli.js"
8
+ "codesavant": "./dist/cli.js"
9
9
  },
10
10
  "scripts": {
11
11
  "start": "bun run src/cli.ts",
@@ -13,18 +13,22 @@
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
- "commander": "^12.0.0",
27
+ "simple-git": "^3.30.0",
24
28
  "zod": "^3.22.0"
25
29
  },
26
30
  "devDependencies": {
27
- "@types/bun": "latest",
31
+ "@types/bun": "^1.3.8",
28
32
  "@types/react": "^18.2.0",
29
33
  "ink-testing-library": "^4.0.0",
30
34
  "react-devtools-core": "^7.0.1",
@@ -39,16 +43,28 @@
39
43
  "keywords": [
40
44
  "cli",
41
45
  "ai",
46
+ "assistant",
42
47
  "coding-assistant",
43
48
  "bun",
44
49
  "llm",
45
- "developer-tools"
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"
49
64
  },
50
65
  "files": [
51
66
  "dist/**/*",
67
+ "package.json",
52
68
  "README.md",
53
69
  "LICENSE"
54
70
  ]