terminal-jarvis 0.0.46 โ 0.0.48
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 +34 -14
- package/bin/terminal-jarvis +0 -0
- package/lib/index.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,12 +1,28 @@
|
|
|
1
1
|
# Terminal Jarvis
|
|
2
2
|
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
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
|
+
|
|
7
23
|
[](https://opensource.org/licenses/MIT)
|
|
8
|
-
|
|
9
|
-
|
|
24
|
+
|
|
25
|
+
</div>
|
|
10
26
|
|
|
11
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.
|
|
12
28
|
|
|
@@ -32,6 +48,10 @@ npm install -g terminal-jarvis@stable
|
|
|
32
48
|
|
|
33
49
|
# Install via Cargo (Rust users)
|
|
34
50
|
cargo install terminal-jarvis
|
|
51
|
+
|
|
52
|
+
# Install via Homebrew (macOS/Linux)
|
|
53
|
+
brew tap ba-calderonmorales/terminal-jarvis
|
|
54
|
+
brew install terminal-jarvis
|
|
35
55
|
```
|
|
36
56
|
|
|
37
57
|
**๐ Prerequisites:**
|
|
@@ -105,14 +125,14 @@ terminal-jarvis templates apply my-template
|
|
|
105
125
|
|
|
106
126
|
## Supported AI Tools
|
|
107
127
|
|
|
108
|
-
| Tool | Description | Status |
|
|
109
|
-
| ---------- | -------------------------------------- | ---------- |
|
|
110
|
-
| `claude` | Anthropic's Claude for code assistance | โ
Stable |
|
|
111
|
-
| `gemini` | Google's Gemini CLI tool | โ
Stable |
|
|
112
|
-
| `qwen` | Qwen coding assistant | โ
Stable |
|
|
113
|
-
| `opencode` | Terminal-based AI coding agent | ๐งช Testing |
|
|
114
|
-
| `llxprt` | Multi-provider AI coding assistant | ๐งช Testing |
|
|
115
|
-
| `codex` | OpenAI Codex CLI for local AI coding | ๐งช 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` |
|
|
116
136
|
|
|
117
137
|
\*See [limitations](docs/LIMITATIONS.md) for known issues and workarounds
|
|
118
138
|
|
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.48");
|
|
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