terminal-jarvis 0.0.45 โ 0.0.47
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 +38 -11
- package/bin/terminal-jarvis +0 -0
- package/lib/index.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,10 +1,28 @@
|
|
|
1
1
|
# Terminal Jarvis
|
|
2
2
|
|
|
3
|
-
|
|
4
|
-
|
|
3
|
+
<div align="center">
|
|
4
|
+
|
|
5
|
+
<!-- NPM Package -->
|
|
6
|
+
|
|
7
|
+
[](https://www.npmjs.com/package/terminal-jarvis)
|
|
8
|
+
[](https://www.npmjs.com/package/terminal-jarvis)
|
|
9
|
+
[](https://www.npmjs.com/package/terminal-jarvis)
|
|
10
|
+
[](https://www.npmjs.com/package/terminal-jarvis)
|
|
11
|
+
|
|
12
|
+
<!-- Rust Crate -->
|
|
13
|
+
|
|
14
|
+
[](https://crates.io/crates/terminal-jarvis)
|
|
15
|
+
[](https://crates.io/crates/terminal-jarvis)
|
|
16
|
+
|
|
17
|
+
<!-- Homebrew -->
|
|
18
|
+
|
|
19
|
+
[](https://github.com/BA-CalderonMorales/homebrew-terminal-jarvis)
|
|
20
|
+
|
|
21
|
+
<!-- General -->
|
|
22
|
+
|
|
5
23
|
[](https://opensource.org/licenses/MIT)
|
|
6
|
-
|
|
7
|
-
|
|
24
|
+
|
|
25
|
+
</div>
|
|
8
26
|
|
|
9
27
|
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.
|
|
10
28
|
|
|
@@ -27,6 +45,13 @@ npm install -g terminal-jarvis
|
|
|
27
45
|
|
|
28
46
|
# Install stable version (recommended for production)
|
|
29
47
|
npm install -g terminal-jarvis@stable
|
|
48
|
+
|
|
49
|
+
# Install via Cargo (Rust users)
|
|
50
|
+
cargo install terminal-jarvis
|
|
51
|
+
|
|
52
|
+
# Install via Homebrew (macOS/Linux)
|
|
53
|
+
brew tap ba-calderonmorales/terminal-jarvis
|
|
54
|
+
brew install terminal-jarvis
|
|
30
55
|
```
|
|
31
56
|
|
|
32
57
|
**๐ Prerequisites:**
|
|
@@ -100,13 +125,14 @@ terminal-jarvis templates apply my-template
|
|
|
100
125
|
|
|
101
126
|
## Supported AI Tools
|
|
102
127
|
|
|
103
|
-
| Tool | Description | Status
|
|
104
|
-
| ---------- | -------------------------------------- |
|
|
105
|
-
| `claude` | Anthropic's Claude for code assistance | โ
Stable
|
|
106
|
-
| `gemini` | Google's Gemini CLI tool | โ
Stable
|
|
107
|
-
| `qwen` | Qwen coding assistant | โ
Stable
|
|
108
|
-
| `opencode` | Terminal-based AI coding agent | ๐งช Testing
|
|
109
|
-
| `llxprt` | Multi-provider AI coding assistant | ๐งช Testing
|
|
128
|
+
| Tool | Description | Status | Installation Command |
|
|
129
|
+
| ---------- | -------------------------------------- | ---------- | -------------------------------------------- |
|
|
130
|
+
| `claude` | Anthropic's Claude for code assistance | โ
Stable | `npm install -g @anthropic-ai/claude-code` |
|
|
131
|
+
| `gemini` | Google's Gemini CLI tool | โ
Stable | `npm install -g @google/gemini-cli` |
|
|
132
|
+
| `qwen` | Qwen coding assistant | โ
Stable | `npm install -g @qwen-code/qwen-code@latest` |
|
|
133
|
+
| `opencode` | Terminal-based AI coding agent | ๐งช Testing | `npm install -g opencode-ai@latest` |
|
|
134
|
+
| `llxprt` | Multi-provider AI coding assistant | ๐งช Testing | `npm install -g @vybestack/llxprt-code-core` |
|
|
135
|
+
| `codex` | OpenAI Codex CLI for local AI coding | ๐งช Testing | `npm install -g @openai/codex` |
|
|
110
136
|
|
|
111
137
|
\*See [limitations](docs/LIMITATIONS.md) for known issues and workarounds
|
|
112
138
|
|
|
@@ -128,6 +154,7 @@ gemini = { enabled = true, auto_update = false }
|
|
|
128
154
|
qwen = { enabled = true, auto_update = true }
|
|
129
155
|
opencode = { enabled = false, auto_update = false }
|
|
130
156
|
llxprt = { enabled = true, auto_update = true }
|
|
157
|
+
codex = { enabled = true, auto_update = true }
|
|
131
158
|
|
|
132
159
|
[templates]
|
|
133
160
|
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.47");
|
|
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