@mmmbuto/nexuscli 0.8.2 → 0.8.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
CHANGED
|
@@ -28,7 +28,7 @@ NexusCLI is a lightweight AI cockpit (Termux-first) to orchestrate Claude Code,
|
|
|
28
28
|
|
|
29
29
|
---
|
|
30
30
|
|
|
31
|
-
## Highlights (v0.8.
|
|
31
|
+
## Highlights (v0.8.3)
|
|
32
32
|
|
|
33
33
|
- Multi-engine: Claude, Codex, Gemini
|
|
34
34
|
- Native resume: same engine resumes the session; switching engines uses handoff with summary/history
|
|
@@ -36,7 +36,7 @@ NexusCLI is a lightweight AI cockpit (Termux-first) to orchestrate Claude Code,
|
|
|
36
36
|
- Session import: on startup it imports native sessions from ~/.claude ~/.codex ~/.gemini; manual endpoint `POST /api/v1/sessions/import`
|
|
37
37
|
- Voice input (Whisper), auto HTTPS for remote microphone
|
|
38
38
|
- Mobile-first UI with SSE streaming and explicit workspace selection
|
|
39
|
-
- Termux: postinstall
|
|
39
|
+
- Termux: postinstall installs `ripgrep`; Claude wrapper auto-patches missing `vendor/ripgrep/arm64-android/rg`; Codex parser exposes threadId to prevent crash on exit
|
|
40
40
|
|
|
41
41
|
## Supported Engines
|
|
42
42
|
|
|
@@ -263,6 +263,13 @@ class CodexOutputParser {
|
|
|
263
263
|
return this.usage;
|
|
264
264
|
}
|
|
265
265
|
|
|
266
|
+
/**
|
|
267
|
+
* Get thread ID (native Codex session ID)
|
|
268
|
+
*/
|
|
269
|
+
getThreadId() {
|
|
270
|
+
return this.threadId;
|
|
271
|
+
}
|
|
272
|
+
|
|
266
273
|
/**
|
|
267
274
|
* Reset parser state for new request
|
|
268
275
|
*/
|
|
@@ -270,6 +277,7 @@ class CodexOutputParser {
|
|
|
270
277
|
this.buffer = '';
|
|
271
278
|
this.finalResponse = '';
|
|
272
279
|
this.usage = null;
|
|
280
|
+
this.threadId = null;
|
|
273
281
|
this.pendingCommands.clear();
|
|
274
282
|
}
|
|
275
283
|
}
|