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 CHANGED
@@ -2,6 +2,8 @@
2
2
 
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
+ [![Crates.io Version](https://img.shields.io/crates/v/terminal-jarvis.svg)](https://crates.io/crates/terminal-jarvis)
6
+ [![Crates.io Downloads](https://img.shields.io/crates/d/terminal-jarvis.svg)](https://crates.io/crates/terminal-jarvis)
5
7
  [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
6
8
  [![NPM Stable](https://img.shields.io/npm/v/terminal-jarvis/stable.svg?label=stable&color=green)](https://www.npmjs.com/package/terminal-jarvis)
7
9
  [![NPM Beta](https://img.shields.io/npm/v/terminal-jarvis/beta.svg?label=beta&color=orange)](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 | Package |
104
- | ---------- | -------------------------------------- | ---------------- | --------------------------- |
105
- | `claude` | Anthropic's Claude for code assistance | โœ… Stable | `@anthropic-ai/claude-code` |
106
- | `gemini` | Google's Gemini CLI tool | โœ… Stable | `@google/gemini-cli` |
107
- | `qwen` | Qwen coding assistant | โœ… Stable | `@qwen-code/qwen-code` |
108
- | `opencode` | Terminal-based AI coding agent | ๐Ÿงช Testing | Install script |
109
- | `llxprt` | Multi-provider AI coding assistant | ๐Ÿงช Testing | NPM package |
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"
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.43");
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "terminal-jarvis",
3
- "version": "0.0.44",
3
+ "version": "0.0.46",
4
4
  "description": "AI Coding Tools Wrapper - Unified interface for claude-code, gemini-cli, qwen-code, opencode, llxprt, and codex",
5
5
  "bin": {
6
6
  "terminal-jarvis": "bin/terminal-jarvis"