@mmmbuto/nexuscli 0.8.6 → 0.8.7

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,12 +4,11 @@
4
4
  <img src=".github/header/header.png" width="900" />
5
5
  </p>
6
6
 
7
-
8
7
  ---
9
8
 
10
9
  ## Overview
11
10
 
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.
11
+ NexusCLI is a lightweight, Termux-first AI cockpit to orchestrate Claude Code, Codex CLI, and Gemini CLI from a single web/terminal UI. It supports live interrupts, native session resume, and voice input with HTTPS auto-setup for remote devices.
13
12
 
14
13
  ---
15
14
 
@@ -28,17 +27,23 @@ NexusCLI is a lightweight AI cockpit (Termux-first) to orchestrate Claude Code,
28
27
 
29
28
  ---
30
29
 
31
- ## Highlights (v0.8.6)
32
-
33
- - Multi-engine: Claude, Codex, Gemini
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
- - Termux: postinstall installs `ripgrep`; Claude wrapper auto-patches missing `vendor/ripgrep/arm64-android/rg`; Codex parser exposes threadId to prevent crash on exit
40
- - UI: modernized floating input, circular send/stop, updated chat bubbles/icons and markdown rendering
41
- - Gemini fallback: segnala chiaramente `pty.node` mancante e blocca risposte vuote; input bar resta centrata anche con allegati immagini
30
+ ## Highlights (v0.8.7)
31
+
32
+ - Stable mobile layout: `100dvh` viewport, overscroll disabled, and a pinned input bar with safe-area padding for Android browsers.
33
+ - Resilient chats: pre-flight `/health` ping plus 60s client-side timeout with clear error messaging to avoid frozen requests.
34
+ - Safer shell actions: Gemini wrapper flags dangerous commands; Termux PTY adapter now supports ESC-based interrupts for clean stops.
35
+ - Native resume & engine bridge: resume existing Claude/Codex/Gemini sessions; engine switches bridge context with summaries/history.
36
+ - Voice input ready: Whisper STT + auto HTTPS for remote microphone access; stop button reliably interrupts Claude/Codex/Gemini.
37
+
38
+ ## Features
39
+
40
+ - Multi-engine support (Claude, Codex, Gemini)
41
+ - Session continuity with explicit workspace selection
42
+ - SSE streaming responses
43
+ - Model selector with think-mode toggle and default model preference
44
+ - Workspace management and conversation history
45
+ - Config API endpoint for user preferences
46
+ - Stop/Interrupt button across engines
42
47
 
43
48
  ## Supported Engines
44
49
 
package/bin/nexuscli.js CHANGED
@@ -110,18 +110,18 @@ program
110
110
  .option('-a, --admin', 'Create as admin user')
111
111
  .action(usersCommand);
112
112
 
113
+ // nexuscli setup-termux
114
+ program
115
+ .command('setup-termux')
116
+ .description('Bootstrap Termux: install packages, setup SSH, show connection info')
117
+ .action(setupTermuxCommand);
118
+
113
119
  // nexuscli uninstall
114
120
  program
115
121
  .command('uninstall')
116
122
  .description('Prepare for uninstallation (optional data removal)')
117
123
  .action(uninstallCommand);
118
124
 
119
- // nexuscli setup-termux
120
- program
121
- .command('setup-termux')
122
- .description('Bootstrap Termux for remote development (SSH, packages)')
123
- .action(setupTermuxCommand);
124
-
125
125
  // Parse arguments
126
126
  program.parse();
127
127