@mmmbuto/nexuscli 0.9.7003-termux → 0.9.7005-termux
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 +30 -33
- package/frontend/dist/assets/{index-D2yxK2v8.js → index-D8XkscmI.js} +25 -25
- package/frontend/dist/index.html +1 -1
- package/frontend/dist/sw.js +1 -1
- package/lib/server/services/cli-loader.js +1 -1
- package/lib/server/services/session-importer.js +6 -1
- package/lib/server/services/workspace-manager.js +121 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
|
|
9
9
|
## Overview
|
|
10
10
|
|
|
11
|
-
NexusCLI is a lightweight, Termux-first AI cockpit
|
|
11
|
+
NexusCLI is a lightweight, Termux-first AI cockpit that orchestrates Claude Code, Codex CLI, Gemini CLI, and Qwen Code CLI from a single web/terminal UI. It supports live streaming, interrupts, session resume, workspace isolation, and remote voice input with auto HTTPS setup.
|
|
12
12
|
|
|
13
13
|
---
|
|
14
14
|
|
|
@@ -27,41 +27,30 @@ NexusCLI is a lightweight, Termux-first AI cockpit to orchestrate Claude Code, C
|
|
|
27
27
|
|
|
28
28
|
---
|
|
29
29
|
|
|
30
|
-
## Highlights (v0.9.
|
|
30
|
+
## Highlights (v0.9.7004-termux)
|
|
31
31
|
|
|
32
|
-
- **QWEN
|
|
33
|
-
- **
|
|
34
|
-
- **
|
|
32
|
+
- **QWEN CLI**: Integrated Qwen Code CLI with `coder-model` and `vision-model`
|
|
33
|
+
- **Statusbar Realtime**: Qwen tool events streamed live in the UI
|
|
34
|
+
- **Light Theme**: Higher contrast + correct mobile statusbar colors
|
|
35
35
|
|
|
36
|
-
### v0.9.6
|
|
36
|
+
### Stable (v0.9.6)
|
|
37
37
|
|
|
38
|
-
-
|
|
39
|
-
-
|
|
40
|
-
- **Cleaner Errors**: job SSE errors now display correctly in UI
|
|
41
|
-
|
|
42
|
-
### v0.9.5
|
|
43
|
-
|
|
44
|
-
- **GPT-5.2 Codex**: Added latest frontier agentic coding model as default
|
|
45
|
-
- Updated Codex model catalog to match latest OpenAI CLI
|
|
46
|
-
|
|
47
|
-
### v0.9.4
|
|
48
|
-
|
|
49
|
-
- **Dark/Light Theme**: Toggle between themes via UserMenu (persisted in localStorage)
|
|
50
|
-
- **Rate Limiting**: Chat endpoints now protected (10 req/min per user)
|
|
51
|
-
- **Architecture Docs**: New `docs/ARCHITECTURE.md` with system diagrams
|
|
52
|
-
- CSS refactored to use CSS variables for theming support
|
|
38
|
+
- Jobs runner restored with Termux-safe execution
|
|
39
|
+
- Cleaner job SSE errors in UI
|
|
53
40
|
|
|
54
41
|
## Features
|
|
55
42
|
|
|
56
|
-
- Multi-engine
|
|
57
|
-
-
|
|
58
|
-
-
|
|
59
|
-
-
|
|
60
|
-
- Workspace
|
|
61
|
-
-
|
|
62
|
-
-
|
|
63
|
-
-
|
|
64
|
-
-
|
|
43
|
+
- Multi-engine orchestration (Claude, Codex, Gemini, Qwen)
|
|
44
|
+
- SSE streaming with realtime tool statusbar
|
|
45
|
+
- Interrupt/stop per engine
|
|
46
|
+
- Session resume + native session import across engines
|
|
47
|
+
- Workspace isolation, switching, and history
|
|
48
|
+
- File & image attachments (vision models supported)
|
|
49
|
+
- Model selector (think mode + reasoning levels where available)
|
|
50
|
+
- Voice input (browser STT, optional Whisper via OpenAI key)
|
|
51
|
+
- Conversation search + pin/bookmark
|
|
52
|
+
- Built-in jobs runner API for shell tasks
|
|
53
|
+
- Config API + rate limiting on chat endpoints
|
|
65
54
|
|
|
66
55
|
## Supported Engines
|
|
67
56
|
|
|
@@ -88,8 +77,11 @@ npm install -g github:DioNanos/nexuscli
|
|
|
88
77
|
### Release Channels
|
|
89
78
|
|
|
90
79
|
```bash
|
|
91
|
-
#
|
|
92
|
-
npm install -g @mmmbuto/nexuscli
|
|
80
|
+
# Latest (default)
|
|
81
|
+
npm install -g @mmmbuto/nexuscli
|
|
82
|
+
|
|
83
|
+
# Stable channel (pinned)
|
|
84
|
+
npm install -g @mmmbuto/nexuscli@stable
|
|
93
85
|
```
|
|
94
86
|
|
|
95
87
|
## Setup
|
|
@@ -128,8 +120,10 @@ nexuscli start
|
|
|
128
120
|
| `nexuscli workspaces` | Manage workspaces |
|
|
129
121
|
| `nexuscli model` | Default model |
|
|
130
122
|
| `nexuscli api` | Additional API keys (e.g., Whisper) |
|
|
123
|
+
| `nexuscli logs` | View server logs |
|
|
131
124
|
| `nexuscli users` | Users |
|
|
132
|
-
| `
|
|
125
|
+
| `nexuscli setup-termux` | Termux helpers (services, paths) |
|
|
126
|
+
| `nexuscli uninstall` | Remove NexusCLI |
|
|
133
127
|
|
|
134
128
|
---
|
|
135
129
|
|
|
@@ -199,6 +193,9 @@ It is a **research and learning tool**.
|
|
|
199
193
|
| `POST /api/v1/qwen/interrupt` | Qwen | Stop running generation |
|
|
200
194
|
| `GET /api/v1/models` | All | List available models |
|
|
201
195
|
| `GET /api/v1/config` | - | Get user preferences (default model) |
|
|
196
|
+
| `POST /api/v1/sessions/import` | - | Import native sessions (admin) |
|
|
197
|
+
| `POST /api/v1/jobs` | - | Run a background job (SSE stream) |
|
|
198
|
+
| `GET /api/v1/workspaces` | - | List workspaces from sessions |
|
|
202
199
|
| `GET /health` | - | Health check |
|
|
203
200
|
|
|
204
201
|
---
|