terminal-jarvis 0.0.51 โ†’ 0.0.54

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 CHANGED
@@ -26,11 +26,17 @@
26
26
 
27
27
  </div>
28
28
 
29
- A unified command center for AI coding tools. Manage and run claude-code, gemini-cli, qwen-code, opencode, llxprt, and codex from one beautiful terminal interface.
29
+ <hr>
30
+
31
+ A unified command center for AI coding tools. Manage and run claude-code, gemini-cli, qwen-code, opencode, llxprt, codex, and crush from one beautiful terminal interface.
32
+
33
+ <hr>
30
34
 
31
35
  <img src="screenshots/promo_image_for_readme.png" alt="Terminal Jarvis Interface" width="100%">
32
36
 
33
- ---
37
+ <hr>
38
+
39
+ ๐Ÿ“‹ **[View all 7 supported AI tools โ†’](docs/SOURCES.md)**
34
40
 
35
41
  ๐ŸŽ‰ **Try it instantly:** `npx terminal-jarvis`
36
42
 
@@ -127,14 +133,22 @@ terminal-jarvis templates apply my-template
127
133
 
128
134
  ## Supported AI Tools
129
135
 
130
- | Tool | Description | Status | Installation Command |
131
- | ---------- | -------------------------------------- | ---------- | -------------------------------------------- |
132
- | `claude` | Anthropic's Claude for code assistance | โœ… Stable | `npm install -g @anthropic-ai/claude-code` |
133
- | `gemini` | Google's Gemini CLI tool | โœ… Stable | `npm install -g @google/gemini-cli` |
134
- | `qwen` | Qwen coding assistant | โœ… Stable | `npm install -g @qwen-code/qwen-code@latest` |
135
- | `opencode` | Terminal-based AI coding agent | ๐Ÿงช Testing | `npm install -g opencode-ai@latest` |
136
- | `llxprt` | Multi-provider AI coding assistant | ๐Ÿงช Testing | `npm install -g @vybestack/llxprt-code-core` |
137
- | `codex` | OpenAI Codex CLI for local AI coding | ๐Ÿงช Testing | `npm install -g @openai/codex` |
136
+ | Tool | Description | Status | Installation Command |
137
+ | ---------- | ----------------------------------------- | ---------- | -------------------------------------------- |
138
+ | `claude` | Anthropic's Claude for code assistance | Stable | `npm install -g @anthropic-ai/claude-code` |
139
+ | `gemini` | Google's Gemini CLI tool | Stable | `npm install -g @google/gemini-cli` |
140
+ | `qwen` | Qwen coding assistant | Stable | `npm install -g @qwen-code/qwen-code@latest` |
141
+ | `opencode` | Terminal-based AI coding agent | Testing | `npm install -g opencode-ai@latest` |
142
+ | `llxprt` | Multi-provider AI coding assistant | Testing | `npm install -g @vybestack/llxprt-code-core` |
143
+ | `codex` | OpenAI Codex CLI for local AI coding | Testing | `npm install -g @openai/codex` |
144
+ | `crush` | Charm's multi-model AI assistant with LSP | New | `npm install -g @charmland/crush` |
145
+
146
+
147
+
148
+
149
+
150
+
151
+
138
152
 
139
153
  \*See [limitations](docs/LIMITATIONS.md) for known issues and workarounds
140
154
 
@@ -157,6 +171,7 @@ qwen = { enabled = true, auto_update = true }
157
171
  opencode = { enabled = false, auto_update = false }
158
172
  llxprt = { enabled = true, auto_update = true }
159
173
  codex = { enabled = true, auto_update = true }
174
+ crush = { enabled = true, auto_update = true }
160
175
 
161
176
  [templates]
162
177
  repository = "your-username/jarvis-templates"
Binary file
package/lib/index.js CHANGED
@@ -129,7 +129,7 @@ async function main() {
129
129
  }
130
130
  }
131
131
  function showFallbackMessage() {
132
- console.log("๐Ÿค– Terminal Jarvis v0.0.51");
132
+ console.log("๐Ÿค– Terminal Jarvis v0.0.54");
133
133
  console.log("");
134
134
  console.log("โŒ Error: Could not find or execute the T.JARVIS binary.");
135
135
  console.log("");
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "terminal-jarvis",
3
- "version": "0.0.51",
4
- "description": "AI Coding Tools Wrapper - Unified interface for claude-code, gemini-cli, qwen-code, opencode, llxprt, and codex",
3
+ "version": "0.0.54",
4
+ "description": "AI Coding Tools Wrapper - Unified interface for claude-code, gemini-cli, qwen-code, opencode, llxprt, codex, and crush",
5
5
  "bin": {
6
6
  "terminal-jarvis": "bin/terminal-jarvis"
7
7
  },
@@ -13,7 +13,8 @@
13
13
  "package.json"
14
14
  ],
15
15
  "scripts": {
16
- "sync-readme": "cp ../../README.md .",
16
+ "generate-tools": "../../scripts/utils/generate-readme-tools.sh",
17
+ "sync-readme": "npm run generate-tools && cp ../../README.md .",
17
18
  "build-rust": "cd ../.. && cargo build --release",
18
19
  "copy-binary": "mkdir -p bin && cp ../../target/release/terminal-jarvis bin/terminal-jarvis && chmod +x bin/terminal-jarvis",
19
20
  "typecheck": "tsc --noEmit",
@@ -49,7 +50,7 @@
49
50
  "devDependencies": {
50
51
  "@biomejs/biome": "^2.1.3",
51
52
  "@types/node": "^20.0.0",
52
- "typescript": "^5.0.0"
53
+ "typescript": "^5.9.2"
53
54
  },
54
55
  "engines": {
55
56
  "node": ">=16.0.0"