terminal-jarvis 0.0.51 โ 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 +18 -10
- package/bin/terminal-jarvis +0 -0
- package/lib/index.js +1 -1
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -26,11 +26,17 @@
|
|
|
26
26
|
|
|
27
27
|
</div>
|
|
28
28
|
|
|
29
|
-
|
|
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
|
|
131
|
-
| ---------- |
|
|
132
|
-
| `claude` | Anthropic's Claude for code assistance
|
|
133
|
-
| `gemini` | Google's Gemini CLI tool
|
|
134
|
-
| `qwen` | Qwen coding assistant
|
|
135
|
-
| `opencode` | Terminal-based AI coding agent
|
|
136
|
-
| `llxprt` | Multi-provider AI coding assistant
|
|
137
|
-
| `codex` | OpenAI Codex CLI for local AI coding
|
|
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"
|
package/bin/terminal-jarvis
CHANGED
|
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.
|
|
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.
|
|
4
|
-
"description": "AI Coding Tools Wrapper - Unified interface for claude-code, gemini-cli, qwen-code, opencode, llxprt, and
|
|
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
|
},
|