@mmmbuto/nexuscli 0.5.1 → 0.5.3
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 +7 -4
- package/bin/nexuscli.js +7 -0
- package/frontend/dist/assets/{index-CikJbUR5.js → index-DaG2hvsF.js} +1703 -1703
- package/frontend/dist/index.html +1 -1
- package/lib/cli/api.js +4 -4
- package/lib/cli/setup-termux.js +213 -0
- package/lib/cli/start.js +2 -1
- package/lib/server/routes/keys.js +22 -0
- package/lib/server/routes/speech.js +75 -0
- package/lib/server/server.js +6 -0
- package/lib/setup/postinstall.js +24 -0
- package/package.json +7 -10
package/README.md
CHANGED
|
@@ -12,9 +12,9 @@
|
|
|
12
12
|
NexusCLI is an experimental, ultra-light terminal cockpit designed for
|
|
13
13
|
AI-assisted development workflows on Termux (Android).
|
|
14
14
|
|
|
15
|
-
**v0.5.
|
|
15
|
+
**v0.5.3** - Mobile-First AI Control Plane
|
|
16
16
|
|
|
17
|
-
Web UI wrapper for Claude Code, Codex CLI, and Gemini CLI.
|
|
17
|
+
Web UI wrapper for Claude Code, Codex CLI, and Gemini CLI with voice input support.
|
|
18
18
|
|
|
19
19
|
---
|
|
20
20
|
|
|
@@ -36,6 +36,8 @@ Web UI wrapper for Claude Code, Codex CLI, and Gemini CLI.
|
|
|
36
36
|
## Features
|
|
37
37
|
|
|
38
38
|
- Multi-engine support (Claude, Codex, Gemini)
|
|
39
|
+
- **Voice input** (OpenAI Whisper STT)
|
|
40
|
+
- **Auto HTTPS** for remote microphone access
|
|
39
41
|
- Mobile-first responsive UI
|
|
40
42
|
- SSE streaming responses
|
|
41
43
|
- Workspace management
|
|
@@ -91,6 +93,7 @@ Open browser: `http://localhost:41800`
|
|
|
91
93
|
| `nexuscli config` | Configuration |
|
|
92
94
|
| `nexuscli api` | Manage API keys |
|
|
93
95
|
| `nexuscli users` | User management |
|
|
96
|
+
| `nexuscli setup-termux` | Bootstrap Termux (SSH, packages) |
|
|
94
97
|
|
|
95
98
|
---
|
|
96
99
|
|
|
@@ -101,13 +104,13 @@ Configure API keys for additional providers:
|
|
|
101
104
|
```bash
|
|
102
105
|
nexuscli api list # List configured keys
|
|
103
106
|
nexuscli api set deepseek <key> # DeepSeek models
|
|
104
|
-
nexuscli api set openai <key> #
|
|
107
|
+
nexuscli api set openai <key> # Voice input (Whisper STT)
|
|
105
108
|
nexuscli api set openrouter <key> # Future: Multi-provider gateway
|
|
106
109
|
nexuscli api delete <provider> # Remove key
|
|
107
110
|
```
|
|
108
111
|
|
|
109
112
|
> **Note**: Claude/Codex/Gemini keys are managed by their respective CLIs.
|
|
110
|
-
>
|
|
113
|
+
> OpenAI key enables voice input via Whisper. HTTPS auto-generated for remote mic access.
|
|
111
114
|
|
|
112
115
|
---
|
|
113
116
|
|
package/bin/nexuscli.js
CHANGED
|
@@ -21,6 +21,7 @@ const apiCommand = require('../lib/cli/api');
|
|
|
21
21
|
const workspacesCommand = require('../lib/cli/workspaces');
|
|
22
22
|
const usersCommand = require('../lib/cli/users');
|
|
23
23
|
const uninstallCommand = require('../lib/cli/uninstall');
|
|
24
|
+
const setupTermuxCommand = require('../lib/cli/setup-termux');
|
|
24
25
|
|
|
25
26
|
program
|
|
26
27
|
.name('nexuscli')
|
|
@@ -108,6 +109,12 @@ program
|
|
|
108
109
|
.description('Prepare for uninstallation (optional data removal)')
|
|
109
110
|
.action(uninstallCommand);
|
|
110
111
|
|
|
112
|
+
// nexuscli setup-termux
|
|
113
|
+
program
|
|
114
|
+
.command('setup-termux')
|
|
115
|
+
.description('Bootstrap Termux for remote development (SSH, packages)')
|
|
116
|
+
.action(setupTermuxCommand);
|
|
117
|
+
|
|
111
118
|
// Parse arguments
|
|
112
119
|
program.parse();
|
|
113
120
|
|