terminal-jarvis 0.0.76 → 0.0.78

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
@@ -4,7 +4,7 @@
4
4
 
5
5
  **Unified command center for AI coding tools**
6
6
 
7
- Manage Claude, Gemini, Qwen, and 8 more AI assistants from one terminal interface.
7
+ Manage Claude, Gemini, Qwen, and 19 more AI assistants from one terminal interface.
8
8
 
9
9
  [![NPM Version](https://img.shields.io/npm/v/terminal-jarvis.svg?logo=npm&style=flat-square)](https://www.npmjs.com/package/terminal-jarvis)
10
10
  [![Crates.io](https://img.shields.io/crates/v/terminal-jarvis.svg?logo=rust&style=flat-square)](https://crates.io/crates/terminal-jarvis)
@@ -39,10 +39,9 @@ brew tap ba-calderonmorales/terminal-jarvis && brew install terminal-jarvis # H
39
39
  | Feature | Description |
40
40
  |:--------|:------------|
41
41
  | **Interactive Interface** | Beautiful terminal UI with ASCII art, themed menus, and keyboard navigation for a polished command-line experience. |
42
- | **11 AI Tools Supported** | Claude, Gemini, Qwen, OpenCode, Codex, Aider, Goose, Amp, Crush, LLXPRT, and GitHub Copilot CLI - all manageable from a single interface. |
42
+ | **22 AI Tools Supported** | Claude, Gemini, Qwen, OpenCode, Codex, Aider, Goose, Amp, Crush, LLXPRT, and many more - all manageable from a single interface. |
43
43
  | **Integrated Installation** | Install, update, or uninstall any supported AI tool directly from the menu without leaving the terminal. |
44
44
  | **Session Continuity** | Preserves your terminal session state during browser-based authentication flows. Currently in development with expanding coverage. |
45
- | **Comparative Evaluation** | Built-in framework for running evaluations across different AI tools. Currently in development with expanding coverage. |
46
45
 
47
46
  <p align="center">
48
47
  <img src="https://raw.githubusercontent.com/BA-CalderonMorales/terminal-jarvis/docs/screenshots_and_demos/screenshots_and_demo/Terminal%20Jarvis%20Demo.gif" alt="Demo" width="100%">
Binary file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "terminal-jarvis",
3
- "version": "0.0.76",
3
+ "version": "0.0.78",
4
4
  "description": "AI Coding Tools Wrapper - Unified interface for claude-code, gemini-cli, qwen-code, opencode, llxprt, codex, crush, goose, amp, and aider",
5
5
  "bin": {
6
6
  "terminal-jarvis": "bin/terminal-jarvis"
@@ -8,7 +8,7 @@
8
8
  - Verify installation
9
9
 
10
10
  Version Hint (used by CI for consistency checks):
11
- Terminal Jarvis v0.0.75
11
+ Terminal Jarvis v0.0.78
12
12
  */
13
13
 
14
14
  const fs = require('fs');
@@ -261,16 +261,30 @@ function checkPrerequisites() {
261
261
  const extractTime = ((Date.now() - extractStart) / 1000).toFixed(1);
262
262
  log(`[SUCCESS] Extraction complete (${extractTime}s)`);
263
263
 
264
- // Move binary to bin directory
264
+ // Move binaries to bin directory
265
+ await fs.promises.mkdir(binDir, { recursive: true });
266
+
267
+ // 1. Rust binary
265
268
  const extractedBin = path.join(downloadDir, 'terminal-jarvis');
266
269
  const binaryDest = path.join(binDir, platformInfo.isWindows ? 'terminal-jarvis.exe' : 'terminal-jarvis-bin');
267
-
268
- await fs.promises.mkdir(binDir, { recursive: true });
269
270
  await fs.promises.copyFile(extractedBin, binaryDest);
270
271
  if (!platformInfo.isWindows) {
271
272
  await fs.promises.chmod(binaryDest, 0o755);
272
273
  }
273
274
 
275
+ // 2. Go binary (ADK home screen)
276
+ const extractedGo = path.join(downloadDir, platformInfo.isWindows ? 'jarvis.exe' : 'jarvis');
277
+ const goDest = path.join(binDir, platformInfo.isWindows ? 'jarvis.exe' : 'jarvis');
278
+ if (fs.existsSync(extractedGo)) {
279
+ await fs.promises.copyFile(extractedGo, goDest);
280
+ if (!platformInfo.isWindows) {
281
+ await fs.promises.chmod(goDest, 0o755);
282
+ }
283
+ log('[SUCCESS] Go ADK installed');
284
+ } else {
285
+ warn('Go ADK not found in archive, falling back to Rust UI');
286
+ }
287
+
274
288
  // Note: The launcher script (bin/terminal-jarvis) is committed to the repository
275
289
  // We only download and install the binary here
276
290
  const launcherPath = path.join(binDir, 'terminal-jarvis');