terminal-jarvis 0.0.32 ā 0.0.35
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 +13 -9
- package/bin/terminal-jarvis +0 -0
- package/package.json +4 -3
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
|
|
176
|
-
|
|
177
|
-
| `claude`
|
|
178
|
-
| `gemini`
|
|
179
|
-
| `qwen`
|
|
180
|
-
| `opencode` | OpenCode AI coding agent built for the terminal | Install script
|
|
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
|
package/bin/terminal-jarvis
CHANGED
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "terminal-jarvis",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.35",
|
|
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"
|
|
@@ -26,7 +26,7 @@
|
|
|
26
26
|
"build": "npm run sync-readme && npm run copy-binary && npx tsc",
|
|
27
27
|
"prepublishOnly": "npm run build",
|
|
28
28
|
"dev": "npm run build && node lib/index.js",
|
|
29
|
-
"postinstall": "node -e \"console.log('\\nš¤ Terminal Jarvis v0.0.
|
|
29
|
+
"postinstall": "node -e \"console.log('\\nš¤ Terminal Jarvis v0.0.34 installed successfully!\\n\\nā
Full T.JARVIS interface ready to use!\\n\\nRun: npx terminal-jarvis\\n')\""
|
|
30
30
|
},
|
|
31
31
|
"keywords": [
|
|
32
32
|
"cli",
|
|
@@ -36,7 +36,8 @@
|
|
|
36
36
|
"claude",
|
|
37
37
|
"gemini",
|
|
38
38
|
"qwen",
|
|
39
|
-
"opencode"
|
|
39
|
+
"opencode",
|
|
40
|
+
"llxprt"
|
|
40
41
|
],
|
|
41
42
|
"author": "BA-CalderonMorales",
|
|
42
43
|
"license": "MIT",
|