@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 +2 -1
- package/bin/nexuscli.js +6 -13
- package/frontend/dist/assets/{index-DuqGKSR-.js → index-DgHku52j.js} +1704 -1704
- package/frontend/dist/index.html +1 -1
- package/lib/cli/model.js +38 -17
- package/lib/config/manager.js +0 -3
- package/lib/config/models.js +157 -0
- package/lib/server/.env.example +1 -1
- package/lib/server/routes/config.js +18 -3
- package/lib/server/routes/models.js +5 -152
- package/lib/server/routes/sessions.js +42 -3
- package/lib/server/server.js +0 -2
- package/lib/server/services/cli-loader.js +75 -13
- package/lib/server/services/codex-output-parser.js +0 -8
- package/lib/server/services/context-bridge.js +4 -6
- package/lib/server/services/gemini-wrapper.js +6 -14
- package/lib/server/services/workspace-manager.js +1 -1
- package/lib/server/tests/performance.test.js +1 -1
- package/lib/server/tests/services.test.js +2 -2
- package/package.json +1 -1
- package/lib/server/db.js.old +0 -225
- package/lib/server/docs/API_WRAPPER_CONTRACT.md +0 -682
- package/lib/server/docs/ARCHITECTURE.md +0 -441
- package/lib/server/docs/DATABASE_SCHEMA.md +0 -783
- package/lib/server/docs/DESIGN_PRINCIPLES.md +0 -598
- package/lib/server/docs/NEXUSCHAT_ANALYSIS.md +0 -488
- package/lib/server/docs/PIPELINE_INTEGRATION.md +0 -636
- package/lib/server/docs/README.md +0 -272
- package/lib/server/docs/UI_DESIGN.md +0 -916
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
|
-
|
|
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
|
|