terminal-jarvis 0.0.22 → 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 CHANGED
@@ -3,6 +3,8 @@
3
3
  [![NPM Version](https://img.shields.io/npm/v/terminal-jarvis.svg)](https://www.npmjs.com/package/terminal-jarvis)
4
4
  [![NPM Downloads](https://img.shields.io/npm/dm/terminal-jarvis.svg)](https://www.npmjs.com/package/terminal-jarvis)
5
5
  [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
6
+ [![NPM Stable](https://img.shields.io/npm/v/terminal-jarvis/stable.svg?label=stable&color=green)](https://www.npmjs.com/package/terminal-jarvis)
7
+ [![NPM Beta](https://img.shields.io/npm/v/terminal-jarvis/beta.svg?label=beta&color=orange)](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
- # Or install globally
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
- > **Note**: The current NPM version (0.0.19) includes full binary functionality with the complete T.JARVIS interface. No additional installation required!
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/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.21");
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.22",
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"
@@ -22,10 +22,10 @@
22
22
  "format:fix": "biome format --write src/",
23
23
  "check": "biome check src/",
24
24
  "check:fix": "biome check --write src/",
25
- "build": "npm run sync-readme && npm run build-rust && npm run copy-binary && tsc",
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.21 installed successfully!\\n\\nāœ… Full T.JARVIS interface ready to use!\\n\\nRun: npx terminal-jarvis\\n')\""
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",