terminal-jarvis 0.0.21 ā 0.0.23
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 -2
- package/bin/terminal-jarvis +0 -0
- package/lib/index.js +1 -1
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -3,6 +3,8 @@
|
|
|
3
3
|
[](https://www.npmjs.com/package/terminal-jarvis)
|
|
4
4
|
[](https://www.npmjs.com/package/terminal-jarvis)
|
|
5
5
|
[](https://opensource.org/licenses/MIT)
|
|
6
|
+
[](https://www.npmjs.com/package/terminal-jarvis)
|
|
7
|
+
[](https://www.npmjs.com/package/terminal-jarvis)
|
|
6
8
|
|
|
7
9
|
A thin Rust wrapper that provides a unified interface for managing and running AI coding tools like claude-code, gemini-cli, qwen-code, and opencode. Think of it as a package manager and runner for AI coding assistants.
|
|
8
10
|
|
|
@@ -10,18 +12,32 @@ A thin Rust wrapper that provides a unified interface for managing and running A
|
|
|
10
12
|
|
|
11
13
|
## Quick Start
|
|
12
14
|
|
|
15
|
+
### Choose Your Installation Channel
|
|
16
|
+
|
|
13
17
|
```bash
|
|
14
18
|
# Try it instantly with npx (no installation required)
|
|
15
19
|
npx terminal-jarvis
|
|
16
20
|
|
|
17
|
-
#
|
|
21
|
+
# Install latest version (default)
|
|
18
22
|
npm install -g terminal-jarvis
|
|
19
23
|
|
|
24
|
+
# Install stable version (recommended for production)
|
|
25
|
+
npm install -g terminal-jarvis@stable
|
|
26
|
+
|
|
27
|
+
# Install beta version (for testing new features)
|
|
28
|
+
npm install -g terminal-jarvis@beta
|
|
29
|
+
|
|
20
30
|
# For full functionality, install from source:
|
|
21
31
|
cargo install --git https://github.com/BA-CalderonMorales/terminal-jarvis
|
|
22
32
|
```
|
|
23
33
|
|
|
24
|
-
|
|
34
|
+
### Installation Channels Explained
|
|
35
|
+
|
|
36
|
+
- **Latest** (`terminal-jarvis`): Most recently published version
|
|
37
|
+
- **Stable** (`terminal-jarvis@stable`): Production-ready, thoroughly tested releases
|
|
38
|
+
- **Beta** (`terminal-jarvis@beta`): Preview versions with experimental features
|
|
39
|
+
|
|
40
|
+
> **Note**: The current NPM version (0.0.23) includes full binary functionality with the complete T.JARVIS interface. No additional installation required!
|
|
25
41
|
|
|
26
42
|
## Features
|
|
27
43
|
|
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.23");
|
|
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.23",
|
|
4
4
|
"description": "A thin Rust wrapper that provides a unified interface for managing and running AI coding tools",
|
|
5
5
|
"bin": {
|
|
6
6
|
"terminal-jarvis": "bin/terminal-jarvis"
|
|
@@ -25,7 +25,7 @@
|
|
|
25
25
|
"build": "npm run sync-readme && npx tsc",
|
|
26
26
|
"prepublishOnly": "npm run build",
|
|
27
27
|
"dev": "npm run build && node lib/index.js",
|
|
28
|
-
"postinstall": "node -e \"console.log('\\nš¤ Terminal Jarvis v0.0.
|
|
28
|
+
"postinstall": "node -e \"console.log('\\nš¤ Terminal Jarvis v0.0.23 installed successfully!\\n\\nā
Full T.JARVIS interface ready to use!\\n\\nRun: npx terminal-jarvis\\n')\""
|
|
29
29
|
},
|
|
30
30
|
"keywords": [
|
|
31
31
|
"cli",
|