orchestrix 16.0.0 → 16.0.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/bin/o8x.js +11 -11
- package/lib/doctor.js +1 -1
- package/lib/ui.js +1 -1
- package/package.json +3 -3
package/bin/o8x.js
CHANGED
|
@@ -58,15 +58,15 @@ async function main() {
|
|
|
58
58
|
function printHelp() {
|
|
59
59
|
const { version } = require('../package.json');
|
|
60
60
|
console.log(`
|
|
61
|
-
|
|
61
|
+
orchestrix v${version} — Install Orchestrix multi-agent infrastructure
|
|
62
62
|
|
|
63
63
|
Usage:
|
|
64
|
-
npx
|
|
65
|
-
npx
|
|
66
|
-
npx
|
|
67
|
-
npx
|
|
68
|
-
npx
|
|
69
|
-
npx
|
|
64
|
+
npx orchestrix install [options] Install into current project
|
|
65
|
+
npx orchestrix doctor Check installation health
|
|
66
|
+
npx orchestrix upgrade Upgrade to latest from MCP server
|
|
67
|
+
npx orchestrix uninstall Remove Orchestrix files from project
|
|
68
|
+
npx orchestrix --version Show version
|
|
69
|
+
npx orchestrix --help Show this help message
|
|
70
70
|
|
|
71
71
|
Install options:
|
|
72
72
|
--key <KEY> License key (skips interactive prompt)
|
|
@@ -78,10 +78,10 @@ function printHelp() {
|
|
|
78
78
|
-y, --yes Skip confirmations
|
|
79
79
|
|
|
80
80
|
Examples:
|
|
81
|
-
npx
|
|
82
|
-
npx
|
|
83
|
-
npx
|
|
84
|
-
npx
|
|
81
|
+
npx orchestrix install Interactive install
|
|
82
|
+
npx orchestrix install --key orch_live_xxx Install with key
|
|
83
|
+
npx orchestrix install --offline Offline install (embedded files)
|
|
84
|
+
npx orchestrix doctor Health check
|
|
85
85
|
`);
|
|
86
86
|
}
|
|
87
87
|
|
package/lib/doctor.js
CHANGED
|
@@ -142,7 +142,7 @@ async function doctor(flags) {
|
|
|
142
142
|
if (allGood) {
|
|
143
143
|
ui.success('All checks passed');
|
|
144
144
|
} else {
|
|
145
|
-
ui.info('Some checks failed — run "npx
|
|
145
|
+
ui.info('Some checks failed — run "npx orchestrix install" to fix');
|
|
146
146
|
}
|
|
147
147
|
console.log();
|
|
148
148
|
}
|
package/lib/ui.js
CHANGED
|
@@ -82,7 +82,7 @@ async function confirm(question, defaultYes = false) {
|
|
|
82
82
|
|
|
83
83
|
function banner() {
|
|
84
84
|
console.log();
|
|
85
|
-
console.log(` ${colors.magenta}${colors.bold}
|
|
85
|
+
console.log(` ${colors.magenta}${colors.bold}orchestrix${colors.reset} ${colors.dim}— Orchestrix Installer${colors.reset}`);
|
|
86
86
|
console.log();
|
|
87
87
|
}
|
|
88
88
|
|
package/package.json
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "orchestrix",
|
|
3
|
-
"version": "16.0.
|
|
4
|
-
"description": "Install Orchestrix multi-agent infrastructure into any project. One command: npx
|
|
3
|
+
"version": "16.0.1",
|
|
4
|
+
"description": "Install Orchestrix multi-agent infrastructure into any project. One command: npx orchestrix install",
|
|
5
5
|
"bin": {
|
|
6
|
-
"
|
|
6
|
+
"orchestrix": "bin/o8x.js"
|
|
7
7
|
},
|
|
8
8
|
"files": [
|
|
9
9
|
"bin/",
|