terminal-jarvis 0.0.50 โ†’ 0.0.53

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
@@ -1,7 +1,7 @@
1
- # Terminal Jarvis
2
-
3
1
  <div align="center">
4
2
 
3
+ # Terminal Jarvis
4
+
5
5
  <!-- NPM Package -->
6
6
 
7
7
  [![NPM Version](https://img.shields.io/npm/v/terminal-jarvis.svg?logo=npm&label=NPM%20Version)](https://www.npmjs.com/package/terminal-jarvis)
@@ -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,15 @@ 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` |
138
145
 
139
146
  \*See [limitations](docs/LIMITATIONS.md) for known issues and workarounds
140
147
 
@@ -157,6 +164,7 @@ qwen = { enabled = true, auto_update = true }
157
164
  opencode = { enabled = false, auto_update = false }
158
165
  llxprt = { enabled = true, auto_update = true }
159
166
  codex = { enabled = true, auto_update = true }
167
+ crush = { enabled = true, auto_update = true }
160
168
 
161
169
  [templates]
162
170
  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.50");
132
+ console.log("๐Ÿค– Terminal Jarvis v0.0.53");
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.50",
4
- "description": "AI Coding Tools Wrapper - Unified interface for claude-code, gemini-cli, qwen-code, opencode, llxprt, and codex",
3
+ "version": "0.0.53",
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
  },