@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 +23 -27
- package/frontend/dist/assets/{index-CikJbUR5.js → index-BbBoc8w4.js} +1704 -1704
- package/frontend/dist/assets/{index-Bn_l1e6e.css → index-WfmfixF4.css} +1 -1
- package/frontend/dist/index.html +2 -2
- package/lib/server/routes/chat.js +70 -8
- package/lib/server/routes/codex.js +70 -9
- package/lib/server/routes/gemini.js +75 -15
- package/lib/server/routes/sessions.js +22 -2
- package/lib/server/server.js +11 -0
- package/lib/server/services/codex-wrapper.js +14 -5
- package/lib/server/services/context-bridge.js +165 -42
- package/lib/server/services/gemini-wrapper.js +28 -9
- package/lib/server/services/session-importer.js +155 -0
- package/lib/server/services/session-manager.js +20 -0
- package/lib/server/services/workspace-manager.js +3 -8
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -9,12 +9,7 @@
|
|
|
9
9
|
|
|
10
10
|
## Overview
|
|
11
11
|
|
|
12
|
-
NexusCLI
|
|
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
|
-
##
|
|
31
|
+
## Highlights (v0.7.8)
|
|
37
32
|
|
|
38
|
-
- Multi-engine
|
|
39
|
-
-
|
|
40
|
-
-
|
|
41
|
-
-
|
|
42
|
-
-
|
|
43
|
-
-
|
|
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` |
|
|
97
|
-
| `nexuscli stop` |
|
|
98
|
-
| `nexuscli status` |
|
|
99
|
-
| `nexuscli
|
|
100
|
-
| `nexuscli
|
|
101
|
-
| `nexuscli
|
|
102
|
-
| `nexuscli
|
|
103
|
-
| `nexuscli
|
|
104
|
-
| `
|
|
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
|
---
|