terminal-jarvis 0.0.31 → 0.0.34

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
@@ -47,11 +47,12 @@ Terminal Jarvis serves as your AI coding assistant command center, providing:
47
47
  - **🚀 One-Click Tool Management**: Install, update, and run AI coding tools seamlessly
48
48
  - **📦 Smart Installation Detection**: Automatically detects installed tools and their status
49
49
  - **⚡ Quick Launch Mode**: Run tools directly from the interactive interface
50
- - **🔧 Built-in Tool Support**:
50
+ - **🔧 Built-in Tool Support**:
51
51
  - `claude` - Anthropic's Claude for code assistance
52
52
  - `gemini` - Google's Gemini CLI tool
53
- - `qwen` - Qwen coding assistant
53
+ - `qwen` - Qwen coding assistant
54
54
  - `opencode` - OpenCode AI coding agent built for the terminal
55
+ - `llxprt` - LLxprt Code multi-provider AI coding assistant with enhanced features
55
56
  - **🎯 Intelligent NPM Validation**: Warns about missing dependencies and provides installation guidance
56
57
  - **📱 Responsive Design**: Adapts to your terminal width for optimal display
57
58
  - **🔄 Background Process Support**: Handles long-running tools appropriately
@@ -97,10 +98,12 @@ terminal-jarvis run claude --prompt "Refactor this function"
97
98
  terminal-jarvis run gemini --file src/main.rs
98
99
  terminal-jarvis run qwen --analyze
99
100
  terminal-jarvis run opencode --generate
101
+ terminal-jarvis run llxprt --help
100
102
 
101
103
  # Install specific tools
102
104
  terminal-jarvis install claude
103
105
  terminal-jarvis install gemini
106
+ terminal-jarvis install llxprt
104
107
 
105
108
  # Update packages
106
109
  terminal-jarvis update # Update all packages
@@ -146,7 +149,7 @@ The project follows a modular architecture designed for maintainability and exte
146
149
  ```
147
150
  src/
148
151
  ├── main.rs # Entry point - minimal code, delegates to CLI
149
- ├── cli.rs # Clean, expressive CLI interface definitions
152
+ ├── cli.rs # Clean, expressive CLI interface definitions
150
153
  ├── cli_logic.rs # Business logic with interactive T.JARVIS interface
151
154
  ├── tools.rs # Tool management and detection logic
152
155
  ├── installation_arguments.rs # Installation commands and NPM validation
@@ -172,12 +175,12 @@ The interactive mode provides a complete T.JARVIS experience with real-time tool
172
175
 
173
176
  ## Supported Tools
174
177
 
175
- | Tool | Description | NPM Package | Status |
176
- |------|-------------|-------------|--------|
177
- | `claude` | Anthropic's Claude for code assistance | `@anthropic-ai/claude-code` | ✅ Supported |
178
- | `gemini` | Google's Gemini CLI tool | `@google/gemini-cli` | ✅ Supported |
179
- | `qwen` | Qwen coding assistant | `@qwen-code/qwen-code` | ✅ Supported |
180
- | `opencode` | OpenCode AI coding agent built for the terminal | Install script | ✅ Supported |
178
+ | Tool | Description | NPM Package | Status |
179
+ | ---------- | ----------------------------------------------- | --------------------------- | ------------ |
180
+ | `claude` | Anthropic's Claude for code assistance | `@anthropic-ai/claude-code` | ✅ Supported |
181
+ | `gemini` | Google's Gemini CLI tool | `@google/gemini-cli` | ✅ Supported |
182
+ | `qwen` | Qwen coding assistant | `@qwen-code/qwen-code` | ✅ Supported |
183
+ | `opencode` | OpenCode AI coding agent built for the terminal | Install script | ✅ Supported |
181
184
 
182
185
  ## Adding New Tools
183
186
 
@@ -240,6 +243,7 @@ auto_sync = true
240
243
  The NPM package includes pre-compiled Rust binaries for immediate functionality without requiring a Rust toolchain. This ensures you get the complete T.JARVIS experience out-of-the-box with `npx terminal-jarvis`.
241
244
 
242
245
  **What's Included:**
246
+
243
247
  - Full interactive T.JARVIS interface
244
248
  - Pre-compiled binary for your platform
245
249
  - Zero additional dependencies
Binary file
@@ -1,6 +1,6 @@
1
1
  [tools]
2
- claude-code = { enabled = true, auto_update = true, install_command = "npm install -g @anthropic-ai/claude-cli", update_command = "npm update -g @anthropic-ai/claude-cli" }
3
- gemini-cli = { enabled = true, auto_update = false, install_command = "npm install -g @google/generative-ai-cli", update_command = "npm update -g @google/generative-ai-cli" }
2
+ claude-code = { enabled = true, auto_update = true, install_command = "npm install -g @anthropic-ai/claude-code", update_command = "npm update -g @anthropic-ai/claude-code" }
3
+ gemini-cli = { enabled = true, auto_update = false, install_command = "npm install -g @google/gemini-cli", update_command = "npm update -g @google/gemini-cli" }
4
4
  qwen-code = { enabled = true, auto_update = true, install_command = "npm install -g @qwen-code/qwen-code@latest", update_command = "npm update -g @qwen-code/qwen-code" }
5
5
  opencode = { enabled = true, auto_update = true, install_command = "npm install -g opencode-ai@latest", update_command = "npm update -g opencode-ai" }
6
6
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "terminal-jarvis",
3
- "version": "0.0.31",
3
+ "version": "0.0.34",
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"