terminal-jarvis 0.0.44 โ 0.0.46
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 +1 -1
package/README.md
CHANGED
|
@@ -2,6 +2,8 @@
|
|
|
2
2
|
|
|
3
3
|
[](https://www.npmjs.com/package/terminal-jarvis)
|
|
4
4
|
[](https://www.npmjs.com/package/terminal-jarvis)
|
|
5
|
+
[](https://crates.io/crates/terminal-jarvis)
|
|
6
|
+
[](https://crates.io/crates/terminal-jarvis)
|
|
5
7
|
[](https://opensource.org/licenses/MIT)
|
|
6
8
|
[](https://www.npmjs.com/package/terminal-jarvis)
|
|
7
9
|
[](https://www.npmjs.com/package/terminal-jarvis)
|
|
@@ -27,6 +29,9 @@ npm install -g terminal-jarvis
|
|
|
27
29
|
|
|
28
30
|
# Install stable version (recommended for production)
|
|
29
31
|
npm install -g terminal-jarvis@stable
|
|
32
|
+
|
|
33
|
+
# Install via Cargo (Rust users)
|
|
34
|
+
cargo install terminal-jarvis
|
|
30
35
|
```
|
|
31
36
|
|
|
32
37
|
**๐ Prerequisites:**
|
|
@@ -100,13 +105,14 @@ terminal-jarvis templates apply my-template
|
|
|
100
105
|
|
|
101
106
|
## Supported AI Tools
|
|
102
107
|
|
|
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
|
|
108
|
+
| Tool | Description | Status | Package |
|
|
109
|
+
| ---------- | -------------------------------------- | ---------- | --------------------------- |
|
|
110
|
+
| `claude` | Anthropic's Claude for code assistance | โ
Stable | `@anthropic-ai/claude-code` |
|
|
111
|
+
| `gemini` | Google's Gemini CLI tool | โ
Stable | `@google/gemini-cli` |
|
|
112
|
+
| `qwen` | Qwen coding assistant | โ
Stable | `@qwen-code/qwen-code` |
|
|
113
|
+
| `opencode` | Terminal-based AI coding agent | ๐งช Testing | Install script |
|
|
114
|
+
| `llxprt` | Multi-provider AI coding assistant | ๐งช Testing | NPM package |
|
|
115
|
+
| `codex` | OpenAI Codex CLI for local AI coding | ๐งช Testing | NPM package |
|
|
110
116
|
|
|
111
117
|
\*See [limitations](docs/LIMITATIONS.md) for known issues and workarounds
|
|
112
118
|
|
|
@@ -128,6 +134,7 @@ gemini = { enabled = true, auto_update = false }
|
|
|
128
134
|
qwen = { enabled = true, auto_update = true }
|
|
129
135
|
opencode = { enabled = false, auto_update = false }
|
|
130
136
|
llxprt = { enabled = true, auto_update = true }
|
|
137
|
+
codex = { enabled = true, auto_update = true }
|
|
131
138
|
|
|
132
139
|
[templates]
|
|
133
140
|
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.46");
|
|
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