@mmmbuto/nexuscli 0.7.6 → 0.7.8

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,12 +9,7 @@
9
9
 
10
10
  ## Overview
11
11
 
12
- NexusCLI is an experimental, ultra-light terminal cockpit designed for
13
- AI-assisted development workflows on Termux (Android).
14
-
15
- Mobile-First AI Control Plane
16
-
17
- Web UI wrapper for Claude Code, Codex CLI, and Gemini CLI with voice input support.
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.
18
13
 
19
14
  ---
20
15
 
@@ -33,16 +28,14 @@ Web UI wrapper for Claude Code, Codex CLI, and Gemini CLI with voice input suppo
33
28
 
34
29
  ---
35
30
 
36
- ## Features
31
+ ## Highlights (v0.7.8)
37
32
 
38
- - Multi-engine support (Claude, Codex, Gemini)
39
- - **Voice input** (OpenAI Whisper STT)
40
- - **Auto HTTPS** for remote microphone access
41
- - Mobile-first responsive UI
42
- - SSE streaming responses
43
- - Workspace management
44
- - Conversation history
45
- - Model selector with think mode toggle
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
46
39
 
47
40
  ## Supported Engines
48
41
 
@@ -88,21 +81,20 @@ nexuscli start
88
81
 
89
82
  ---
90
83
 
91
- ## Commands
84
+ ## Commands (CLI)
92
85
 
93
86
  | Command | Description |
94
87
  |---------|-------------|
95
- | `nexuscli init` | Setup wizard |
96
- | `nexuscli start` | Start server (HTTP:41800 + HTTPS:41801) |
97
- | `nexuscli stop` | Stop server |
98
- | `nexuscli status` | Show status, ports, and engines |
99
- | `nexuscli model [model-id]` | Set/get default model preference |
100
- | `nexuscli engines` | Manage AI engines |
101
- | `nexuscli workspaces` | Manage workspaces |
102
- | `nexuscli config` | Configuration |
103
- | `nexuscli api` | Manage API keys |
104
- | `nexuscli users` | User management |
105
- | `nexuscli setup-termux` | Bootstrap Termux + show network URLs |
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) |
106
98
 
107
99
  ---
108
100
 
@@ -163,7 +155,11 @@ It is a **research and learning tool**.
163
155
  | `POST /api/v1/chat` | Claude | SSE streaming chat |
164
156
  | `POST /api/v1/codex` | Codex | SSE streaming chat |
165
157
  | `POST /api/v1/gemini` | Gemini | SSE streaming chat |
158
+ | `POST /api/v1/chat/interrupt` | Claude | Stop running generation |
159
+ | `POST /api/v1/codex/interrupt` | Codex | Stop running generation |
160
+ | `POST /api/v1/gemini/interrupt` | Gemini | Stop running generation |
166
161
  | `GET /api/v1/models` | All | List available models |
162
+ | `GET /api/v1/config` | - | Get user preferences (default model) |
167
163
  | `GET /health` | - | Health check |
168
164
 
169
165
  ---