@mmmbuto/nexuscli 0.9.1 → 0.9.2
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 +5 -2
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -27,8 +27,9 @@ 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.2)
|
|
31
31
|
|
|
32
|
+
- Docs: add DeepSeek + GLM-4.6 models and Z.ai key configuration.
|
|
32
33
|
- Stable mobile layout: `100dvh` viewport, overscroll disabled, and a pinned input bar with safe-area padding for Android browsers.
|
|
33
34
|
- Resilient chats: pre-flight `/health` ping plus 60s client-side timeout with clear error messaging to avoid frozen requests.
|
|
34
35
|
- Safer shell actions: Gemini wrapper flags dangerous commands; Termux PTY adapter now supports ESC-based interrupts for clean stops.
|
|
@@ -50,7 +51,8 @@ NexusCLI is a lightweight, Termux-first AI cockpit to orchestrate Claude Code, C
|
|
|
50
51
|
|
|
51
52
|
| Engine | Models | Provider |
|
|
52
53
|
|--------|--------|----------|
|
|
53
|
-
| **Claude** | Opus 4.5, Sonnet 4.5, Haiku 4.5 | Anthropic |
|
|
54
|
+
| **Claude (native)** | Opus 4.5, Sonnet 4.5, Haiku 4.5 | Anthropic |
|
|
55
|
+
| **Claude-compatible** | DeepSeek (deepseek-*), GLM-4.6 | DeepSeek, Z.ai |
|
|
54
56
|
| **Codex** | GPT-5.1, GPT-5.1 Codex (Mini/Max) | OpenAI |
|
|
55
57
|
| **Gemini** | Gemini 3 Pro Preview, Gemini 3 Flash Preview | Google |
|
|
56
58
|
|
|
@@ -114,6 +116,7 @@ Configure API keys for additional providers:
|
|
|
114
116
|
```bash
|
|
115
117
|
nexuscli api list # List configured keys
|
|
116
118
|
nexuscli api set deepseek <key> # DeepSeek models
|
|
119
|
+
nexuscli api set zai <key> # GLM-4.6 (Z.ai Anthropic-compatible)
|
|
117
120
|
nexuscli api set openai <key> # Voice input (Whisper STT)
|
|
118
121
|
nexuscli api set openrouter <key> # Future: Multi-provider gateway
|
|
119
122
|
nexuscli api delete <provider> # Remove key
|
package/package.json
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mmmbuto/nexuscli",
|
|
3
|
-
"version": "0.9.
|
|
3
|
+
"version": "0.9.2",
|
|
4
4
|
"description": "NexusCLI - TRI CLI Control Plane (Claude/Codex/Gemini)",
|
|
5
5
|
"main": "lib/server/server.js",
|
|
6
6
|
"bin": {
|
|
7
|
-
"nexuscli": "
|
|
7
|
+
"nexuscli": "bin/nexuscli.js"
|
|
8
8
|
},
|
|
9
9
|
"scripts": {
|
|
10
10
|
"start": "node lib/server/server.js",
|