@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 +18 -13
- package/bin/nexuscli.js +6 -6
- package/frontend/dist/assets/{index-Ci5gkOq8.js → index-DFYYfeuX.js} +1703 -1703
- package/frontend/dist/assets/{index-T55oVtC9.css → index-Dl9FJBOB.css} +1 -1
- package/frontend/dist/index.html +2 -2
- package/lib/cli/uninstall.js +1 -1
- package/lib/server/lib/pty-adapter.js +15 -1
- package/lib/server/routes/chat.js +2 -0
- package/lib/server/services/gemini-wrapper.js +41 -0
- package/lib/server/tests/performance.test.js +1 -1
- package/lib/server/tests/services.test.js +2 -2
- package/package.json +1 -1
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
|
|
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.
|
|
32
|
-
|
|
33
|
-
-
|
|
34
|
-
-
|
|
35
|
-
-
|
|
36
|
-
-
|
|
37
|
-
- Voice input
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
-
|
|
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
|
|