@mmmbuto/nexuscli 0.5.0 → 0.5.1

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
@@ -4,6 +4,7 @@
4
4
  <img src=".github/header/header.png" width="900" />
5
5
  </p>
6
6
 
7
+
7
8
  ---
8
9
 
9
10
  ## Overview
@@ -17,6 +18,12 @@ Web UI wrapper for Claude Code, Codex CLI, and Gemini CLI.
17
18
 
18
19
  ---
19
20
 
21
+ [![npm](https://img.shields.io/npm/v/@mmmbuto/nexuscli?style=flat-square&logo=npm)](https://www.npmjs.com/package/@mmmbuto/nexuscli)
22
+ [![downloads](https://img.shields.io/npm/dt/@mmmbuto/nexuscli?style=flat-square)](https://www.npmjs.com/package/@mmmbuto/nexuscli)
23
+ [![ko-fi](https://img.shields.io/badge/☕_Support-Ko--fi-FF5E5B?style=flat-square&logo=ko-fi)](https://ko-fi.com/dionanos)
24
+
25
+ ---
26
+
20
27
  ## Screenshots
21
28
 
22
29
  <p align="center">
@@ -54,4 +54,12 @@ function spawn(command, args, options = {}) {
54
54
  };
55
55
  }
56
56
 
57
- module.exports = { spawn };
57
+ /**
58
+ * Check if native PTY is available
59
+ * Always returns false on Termux (we use spawn adapter)
60
+ */
61
+ function isPtyAvailable() {
62
+ return false;
63
+ }
64
+
65
+ module.exports = { spawn, isPtyAvailable };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mmmbuto/nexuscli",
3
- "version": "0.5.0",
3
+ "version": "0.5.1",
4
4
  "private": false,
5
5
  "description": "Mobile-first AI Control Plane - Web UI for Claude/Codex/Gemini CLI",
6
6
  "main": "lib/server/server.js",