@mmmbuto/nexuscli 0.7.8 → 0.7.9

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
@@ -9,7 +9,7 @@
9
9
 
10
10
  ## Overview
11
11
 
12
- NexusCLI è un cockpit AI leggero (Termux-first) per orchestrare Claude Code, Codex CLI e Gemini CLI da web/terminal, con interruzione live e ripresa nativa delle sessioni.
12
+ NexusCLI is a lightweight AI cockpit (Termux-first) to orchestrate Claude Code, Codex CLI, and Gemini CLI from the web/terminal, with live interrupt and native session resume.
13
13
 
14
14
  ---
15
15
 
@@ -28,14 +28,14 @@ NexusCLI è un cockpit AI leggero (Termux-first) per orchestrare Claude Code, Co
28
28
 
29
29
  ---
30
30
 
31
- ## Highlights (v0.7.8)
31
+ ## Highlights (v0.7.9)
32
32
 
33
33
  - Multi-engine: Claude, Codex, Gemini
34
- - Resume nativo: stesso engine riprende la sessione; cambio engine usa handoff con summary/history
35
- - Stop affidabile: pulsante stop interrompe il processo attivo (Claude/Codex/Gemini)
36
- - Import sessioni: all’avvio importa sessioni native da ~/.claude ~/.codex ~/.gemini; endpoint manuale `POST /api/v1/sessions/import`
37
- - Voice input (Whisper), HTTPS auto per microfono remoto
38
- - UI mobile-first con SSE streaming, workspace selection esplicita
34
+ - Native resume: same engine resumes the session; switching engines uses handoff with summary/history
35
+ - Reliable stop: stop button interrupts the active process (Claude/Codex/Gemini)
36
+ - Session import: on startup it imports native sessions from ~/.claude ~/.codex ~/.gemini; manual endpoint `POST /api/v1/sessions/import`
37
+ - Voice input (Whisper), auto HTTPS for remote microphone
38
+ - Mobile-first UI with SSE streaming and explicit workspace selection
39
39
 
40
40
  ## Supported Engines
41
41
 
@@ -85,16 +85,16 @@ nexuscli start
85
85
 
86
86
  | Command | Description |
87
87
  |---------|-------------|
88
- | `nexuscli init` | Setup wizard (config, cert, dati) |
89
- | `nexuscli start` | Avvia server (HTTP 41800 / HTTPS 41801) |
90
- | `nexuscli stop` | Ferma server |
91
- | `nexuscli status` | Stato e engine disponibili |
92
- | `nexuscli engines` | Gestione engine |
93
- | `nexuscli workspaces` | Gestione workspace |
94
- | `nexuscli model` | Modello di default |
95
- | `nexuscli api` | API keys aggiuntive (es. Whisper) |
96
- | `nexuscli users` | Utenti |
97
- | `POST /api/v1/sessions/import` | Import sessioni native (admin) |
88
+ | `nexuscli init` | Setup wizard (config, certs, data) |
89
+ | `nexuscli start` | Start server (HTTP 41800 / HTTPS 41801) |
90
+ | `nexuscli stop` | Stop server |
91
+ | `nexuscli status` | Status and available engines |
92
+ | `nexuscli engines` | Manage engines |
93
+ | `nexuscli workspaces` | Manage workspaces |
94
+ | `nexuscli model` | Default model |
95
+ | `nexuscli api` | Additional API keys (e.g., Whisper) |
96
+ | `nexuscli users` | Users |
97
+ | `POST /api/v1/sessions/import` | Import native sessions (admin) |
98
98
 
99
99
  ---
100
100
 
@@ -7,6 +7,7 @@
7
7
  const { execSync, spawn } = require('child_process');
8
8
  const fs = require('fs');
9
9
  const path = require('path');
10
+ const pkg = require('../../package.json');
10
11
 
11
12
  // Check if running in Termux
12
13
  const isTermux =
@@ -127,8 +128,10 @@ async function main() {
127
128
  // ============================================
128
129
  // TERMUX INSTALLATION
129
130
  // ============================================
131
+ const versionLabel = `📱 NexusCLI TRI CLI v${pkg.version}`;
132
+ const padding = Math.max(0, 45 - versionLabel.length);
130
133
  console.log(colors.bold('╔═══════════════════════════════════════════════════╗'));
131
- console.log(colors.bold('║ 📱 NexusCLI TRI CLI v0.4.0 ║'));
134
+ console.log(colors.bold(`║ ${versionLabel}${' '.repeat(padding)}║`));
132
135
  console.log(colors.bold('║ Claude • Codex • Gemini ║'));
133
136
  console.log(colors.bold('╚═══════════════════════════════════════════════════╝'));
134
137
  console.log('');
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mmmbuto/nexuscli",
3
- "version": "0.7.8",
3
+ "version": "0.7.9",
4
4
  "description": "NexusCLI - TRI CLI Control Plane (Claude/Codex/Gemini)",
5
5
  "main": "lib/server/server.js",
6
6
  "bin": {