terminal-jarvis 0.0.53 → 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 +14 -7
- package/bin/terminal-jarvis +0 -0
- package/lib/index.js +1 -1
- package/package.json +4 -3
package/README.md
CHANGED
|
@@ -135,13 +135,20 @@ terminal-jarvis templates apply my-template
|
|
|
135
135
|
|
|
136
136
|
| Tool | Description | Status | Installation Command |
|
|
137
137
|
| ---------- | ----------------------------------------- | ---------- | -------------------------------------------- |
|
|
138
|
-
| `claude` | Anthropic's Claude for code assistance |
|
|
139
|
-
| `gemini` | Google's Gemini CLI tool |
|
|
140
|
-
| `qwen` | Qwen coding assistant |
|
|
141
|
-
| `opencode` | Terminal-based AI coding agent |
|
|
142
|
-
| `llxprt` | Multi-provider AI coding assistant |
|
|
143
|
-
| `codex` | OpenAI Codex CLI for local AI coding |
|
|
144
|
-
| `crush` | Charm's multi-model AI assistant with LSP |
|
|
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
|
+
|
|
145
152
|
|
|
146
153
|
\*See [limitations](docs/LIMITATIONS.md) for known issues and workarounds
|
|
147
154
|
|
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.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,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "terminal-jarvis",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.54",
|
|
4
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"
|
|
@@ -13,7 +13,8 @@
|
|
|
13
13
|
"package.json"
|
|
14
14
|
],
|
|
15
15
|
"scripts": {
|
|
16
|
-
"
|
|
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.
|
|
53
|
+
"typescript": "^5.9.2"
|
|
53
54
|
},
|
|
54
55
|
"engines": {
|
|
55
56
|
"node": ">=16.0.0"
|