@mmmbuto/nexuscli 0.8.8 → 0.9.0
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 -4
- package/lib/config/models.js +7 -0
- package/lib/server/routes/models.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -27,12 +27,13 @@ NexusCLI is a lightweight, Termux-first AI cockpit to orchestrate Claude Code, C
|
|
|
27
27
|
|
|
28
28
|
---
|
|
29
29
|
|
|
30
|
-
|
|
30
|
+
<<<<<<< HEAD
|
|
31
|
+
## Highlights (v0.9.0)
|
|
31
32
|
|
|
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.
|
|
35
|
-
- Native resume & engine bridge: resume existing Claude/Codex/Gemini sessions; engine switches bridge context with summaries/history.
|
|
36
|
+
- Native resume & engine bridge: resume existing Claude/Codex/Gemini sessions; engine switches bridge context with summaries/history; Gemini now includes Gemini 3 Flash preview (via gemini-cli-termux testing channel).
|
|
36
37
|
- Voice input ready: Whisper STT + auto HTTPS for remote microphone access; stop button reliably interrupts Claude/Codex/Gemini.
|
|
37
38
|
|
|
38
39
|
## Features
|
|
@@ -50,8 +51,8 @@ NexusCLI is a lightweight, Termux-first AI cockpit to orchestrate Claude Code, C
|
|
|
50
51
|
| Engine | Models | Provider |
|
|
51
52
|
|--------|--------|----------|
|
|
52
53
|
| **Claude** | Opus 4.5, Sonnet 4.5, Haiku 4.5 | Anthropic |
|
|
53
|
-
| **Codex** | GPT-5.
|
|
54
|
-
| **Gemini** | Gemini 3 Pro Preview | Google |
|
|
54
|
+
| **Codex** | GPT-5.1, GPT-5.1 Codex (Mini/Max) | OpenAI |
|
|
55
|
+
| **Gemini** | Gemini 3 Pro Preview, Gemini 3 Flash Preview | Google |
|
|
55
56
|
|
|
56
57
|
---
|
|
57
58
|
|
package/lib/config/models.js
CHANGED
|
@@ -137,6 +137,13 @@ function getCliTools() {
|
|
|
137
137
|
description: '🚀 Latest Preview',
|
|
138
138
|
category: 'gemini',
|
|
139
139
|
default: true
|
|
140
|
+
},
|
|
141
|
+
{
|
|
142
|
+
id: 'gemini-3-flash-preview',
|
|
143
|
+
name: 'gemini-3-flash-preview',
|
|
144
|
+
label: 'Gemini 3 Flash',
|
|
145
|
+
description: '⚡ Fastest Gemini 3 (preview)',
|
|
146
|
+
category: 'gemini'
|
|
140
147
|
}
|
|
141
148
|
]
|
|
142
149
|
}
|
|
@@ -9,7 +9,7 @@ const { getCliTools } = require('../../config/models');
|
|
|
9
9
|
* TRI CLI v0.4.0:
|
|
10
10
|
* - Claude: Opus 4.5, Sonnet 4.5, Haiku 4.5
|
|
11
11
|
* - Codex: GPT-5.1 variants
|
|
12
|
-
* - Gemini: Gemini 3 Pro Preview
|
|
12
|
+
* - Gemini: Gemini 3 Pro Preview, Gemini 3 Flash Preview
|
|
13
13
|
*/
|
|
14
14
|
router.get('/', (req, res) => {
|
|
15
15
|
try {
|