@mmmbuto/nexuscli 0.7.0 → 0.7.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 CHANGED
@@ -12,7 +12,7 @@
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.6.3** - Mobile-First AI Control Plane
15
+ Mobile-First AI Control Plane
16
16
 
17
17
  Web UI wrapper for Claude Code, Codex CLI, and Gemini CLI with voice input support.
18
18
 
@@ -96,6 +96,7 @@ nexuscli start
96
96
  | `nexuscli start` | Start server (HTTP:41800 + HTTPS:41801) |
97
97
  | `nexuscli stop` | Stop server |
98
98
  | `nexuscli status` | Show status, ports, and engines |
99
+ | `nexuscli model [model-id]` | Set/get default model preference |
99
100
  | `nexuscli engines` | Manage AI engines |
100
101
  | `nexuscli workspaces` | Manage workspaces |
101
102
  | `nexuscli config` | Configuration |
package/bin/nexuscli.js CHANGED
@@ -22,7 +22,6 @@ const workspacesCommand = require('../lib/cli/workspaces');
22
22
  const usersCommand = require('../lib/cli/users');
23
23
  const uninstallCommand = require('../lib/cli/uninstall');
24
24
  const setupTermuxCommand = require('../lib/cli/setup-termux');
25
- const { modelCommand } = require('../lib/cli/model');
26
25
 
27
26
  program
28
27
  .name('nexuscli')
@@ -63,12 +62,6 @@ program
63
62
  .description('Manage configuration (get/set/list)')
64
63
  .action(configCommand);
65
64
 
66
- // nexuscli model
67
- program
68
- .command('model [model-id]')
69
- .description('Set/get default model preference')
70
- .action(modelCommand);
71
-
72
65
  // nexuscli engines
73
66
  program
74
67
  .command('engines [action]')
@@ -110,18 +103,18 @@ program
110
103
  .option('-a, --admin', 'Create as admin user')
111
104
  .action(usersCommand);
112
105
 
113
- // nexuscli setup-termux
114
- program
115
- .command('setup-termux')
116
- .description('Bootstrap Termux: install packages, setup SSH, show connection info')
117
- .action(setupTermuxCommand);
118
-
119
106
  // nexuscli uninstall
120
107
  program
121
108
  .command('uninstall')
122
109
  .description('Prepare for uninstallation (optional data removal)')
123
110
  .action(uninstallCommand);
124
111
 
112
+ // nexuscli setup-termux
113
+ program
114
+ .command('setup-termux')
115
+ .description('Bootstrap Termux for remote development (SSH, packages)')
116
+ .action(setupTermuxCommand);
117
+
125
118
  // Parse arguments
126
119
  program.parse();
127
120