@mmmbuto/nexuscli 0.7.8 → 0.7.9
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 +17 -17
- package/lib/setup/postinstall.js +4 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
|
|
10
10
|
## Overview
|
|
11
11
|
|
|
12
|
-
NexusCLI
|
|
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.
|
|
13
13
|
|
|
14
14
|
---
|
|
15
15
|
|
|
@@ -28,14 +28,14 @@ NexusCLI è un cockpit AI leggero (Termux-first) per orchestrare Claude Code, Co
|
|
|
28
28
|
|
|
29
29
|
---
|
|
30
30
|
|
|
31
|
-
## Highlights (v0.7.
|
|
31
|
+
## Highlights (v0.7.9)
|
|
32
32
|
|
|
33
33
|
- Multi-engine: Claude, Codex, Gemini
|
|
34
|
-
-
|
|
35
|
-
-
|
|
36
|
-
-
|
|
37
|
-
- Voice input (Whisper), HTTPS
|
|
38
|
-
-
|
|
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
39
|
|
|
40
40
|
## Supported Engines
|
|
41
41
|
|
|
@@ -85,16 +85,16 @@ nexuscli start
|
|
|
85
85
|
|
|
86
86
|
| Command | Description |
|
|
87
87
|
|---------|-------------|
|
|
88
|
-
| `nexuscli init` | Setup wizard (config,
|
|
89
|
-
| `nexuscli start` |
|
|
90
|
-
| `nexuscli stop` |
|
|
91
|
-
| `nexuscli status` |
|
|
92
|
-
| `nexuscli engines` |
|
|
93
|
-
| `nexuscli workspaces` |
|
|
94
|
-
| `nexuscli model` |
|
|
95
|
-
| `nexuscli api` | API keys
|
|
96
|
-
| `nexuscli users` |
|
|
97
|
-
| `POST /api/v1/sessions/import` | Import
|
|
88
|
+
| `nexuscli init` | Setup wizard (config, certs, data) |
|
|
89
|
+
| `nexuscli start` | Start server (HTTP 41800 / HTTPS 41801) |
|
|
90
|
+
| `nexuscli stop` | Stop server |
|
|
91
|
+
| `nexuscli status` | Status and available engines |
|
|
92
|
+
| `nexuscli engines` | Manage engines |
|
|
93
|
+
| `nexuscli workspaces` | Manage workspaces |
|
|
94
|
+
| `nexuscli model` | Default model |
|
|
95
|
+
| `nexuscli api` | Additional API keys (e.g., Whisper) |
|
|
96
|
+
| `nexuscli users` | Users |
|
|
97
|
+
| `POST /api/v1/sessions/import` | Import native sessions (admin) |
|
|
98
98
|
|
|
99
99
|
---
|
|
100
100
|
|
package/lib/setup/postinstall.js
CHANGED
|
@@ -7,6 +7,7 @@
|
|
|
7
7
|
const { execSync, spawn } = require('child_process');
|
|
8
8
|
const fs = require('fs');
|
|
9
9
|
const path = require('path');
|
|
10
|
+
const pkg = require('../../package.json');
|
|
10
11
|
|
|
11
12
|
// Check if running in Termux
|
|
12
13
|
const isTermux =
|
|
@@ -127,8 +128,10 @@ async function main() {
|
|
|
127
128
|
// ============================================
|
|
128
129
|
// TERMUX INSTALLATION
|
|
129
130
|
// ============================================
|
|
131
|
+
const versionLabel = `📱 NexusCLI TRI CLI v${pkg.version}`;
|
|
132
|
+
const padding = Math.max(0, 45 - versionLabel.length);
|
|
130
133
|
console.log(colors.bold('╔═══════════════════════════════════════════════════╗'));
|
|
131
|
-
console.log(colors.bold('
|
|
134
|
+
console.log(colors.bold(`║ ${versionLabel}${' '.repeat(padding)}║`));
|
|
132
135
|
console.log(colors.bold('║ Claude • Codex • Gemini ║'));
|
|
133
136
|
console.log(colors.bold('╚═══════════════════════════════════════════════════╝'));
|
|
134
137
|
console.log('');
|