orchestrix 16.0.0 → 16.0.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 ADDED
@@ -0,0 +1,81 @@
1
+ # orchestrix
2
+
3
+ Install [Orchestrix](https://orchestrix-mcp.youlidao.ai) multi-agent infrastructure into any project.
4
+
5
+ ## Quick Start
6
+
7
+ ```bash
8
+ npx orchestrix install
9
+ ```
10
+
11
+ That's it. You'll be prompted for your license key, then all files are installed.
12
+
13
+ ## What Gets Installed
14
+
15
+ | File | Purpose |
16
+ |------|---------|
17
+ | `.claude/commands/o.md` | `/o dev`, `/o sm` — activate agents |
18
+ | `.claude/commands/o-help.md` | `/o-help` — list available agents |
19
+ | `.claude/commands/o-status.md` | `/o-status` — check server status |
20
+ | `.mcp.json` | MCP Server configuration (merged with existing) |
21
+ | `.orchestrix-core/core-config.yaml` | Project configuration |
22
+ | `.orchestrix-core/scripts/start-orchestrix.sh` | tmux multi-agent session launcher |
23
+ | `.orchestrix-core/scripts/handoff-detector.sh` | Auto HANDOFF routing between agents |
24
+ | `.claude/settings.local.json` | Claude Code Stop hook for HANDOFF detection |
25
+ | `.env.local` | License key storage (gitignored) |
26
+
27
+ ## Commands
28
+
29
+ ```bash
30
+ npx orchestrix install [options] # Install into current project
31
+ npx orchestrix doctor # Check installation health
32
+ npx orchestrix upgrade # Upgrade to latest version
33
+ npx orchestrix uninstall # Remove Orchestrix files
34
+ ```
35
+
36
+ ### Install Options
37
+
38
+ | Flag | Description |
39
+ |------|-------------|
40
+ | `--key <KEY>` | License key (skips interactive prompt) |
41
+ | `--offline` | Use embedded files only (no network) |
42
+ | `--force` | Overwrite all files without confirmation |
43
+ | `--no-hooks` | Skip Stop hook installation |
44
+ | `--no-scripts` | Skip tmux scripts installation |
45
+ | `--no-mcp` | Skip .mcp.json modification |
46
+
47
+ ## Usage After Install
48
+
49
+ Open the project in Claude Code and use:
50
+
51
+ ```
52
+ /o dev # Activate Developer agent
53
+ /o sm # Activate Scrum Master agent
54
+ /o qa # Activate QA Engineer agent
55
+ /o architect # Activate Solution Architect agent
56
+ /o-help # Show all available agents
57
+ ```
58
+
59
+ ### tmux Multi-Agent Automation
60
+
61
+ Launch 4 agents (Architect, SM, Dev, QA) in parallel tmux windows with automatic HANDOFF routing:
62
+
63
+ ```bash
64
+ bash .orchestrix-core/scripts/start-orchestrix.sh
65
+ ```
66
+
67
+ ## How It Works
68
+
69
+ - **Smart merge**: `.mcp.json` and `settings.local.json` are deep-merged — your existing entries are preserved.
70
+ - **Idempotent**: Safe to run multiple times. Won't duplicate hooks or overwrite customized `core-config.yaml`.
71
+ - **Offline ready**: Use `--offline` to install from bundled files without network access.
72
+ - **Zero dependencies**: Pure Node.js built-ins only.
73
+
74
+ ## Related
75
+
76
+ - [Orchestrix MCP Server](https://github.com/dorayo/orchestrix-mcp-server) — Central agent configuration server
77
+ - [orchestrix-yuri](https://www.npmjs.com/package/orchestrix-yuri) — Meta-orchestrator for project lifecycle management
78
+
79
+ ## License
80
+
81
+ MIT
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
- o8x v${version} — Install Orchestrix multi-agent infrastructure
61
+ orchestrix v${version} — Install Orchestrix multi-agent infrastructure
62
62
 
63
63
  Usage:
64
- npx o8x install [options] Install into current project
65
- npx o8x doctor Check installation health
66
- npx o8x upgrade Upgrade to latest from MCP server
67
- npx o8x uninstall Remove Orchestrix files from project
68
- npx o8x --version Show version
69
- npx o8x --help Show this help message
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 o8x install Interactive install
82
- npx o8x install --key orch_live_xxx Install with key
83
- npx o8x install --offline Offline install (embedded files)
84
- npx o8x doctor Health check
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 o8x install" to fix');
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}o8x${colors.reset} ${colors.dim}— Orchestrix Installer${colors.reset}`);
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.0",
4
- "description": "Install Orchestrix multi-agent infrastructure into any project. One command: npx o8x install",
3
+ "version": "16.0.2",
4
+ "description": "Install Orchestrix multi-agent infrastructure into any project. One command: npx orchestrix install",
5
5
  "bin": {
6
- "o8x": "bin/o8x.js"
6
+ "orchestrix": "bin/o8x.js"
7
7
  },
8
8
  "files": [
9
9
  "bin/",
@@ -24,6 +24,14 @@
24
24
  ],
25
25
  "author": "dorayo",
26
26
  "license": "MIT",
27
+ "repository": {
28
+ "type": "git",
29
+ "url": "git+https://github.com/dorayo/orchestrix.git"
30
+ },
31
+ "homepage": "https://github.com/dorayo/orchestrix#readme",
32
+ "bugs": {
33
+ "url": "https://github.com/dorayo/orchestrix/issues"
34
+ },
27
35
  "engines": {
28
36
  "node": ">=18.0.0"
29
37
  },