orchestrix 16.0.1 → 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.
Files changed (2) hide show
  1. package/README.md +81 -0
  2. package/package.json +9 -1
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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "orchestrix",
3
- "version": "16.0.1",
3
+ "version": "16.0.2",
4
4
  "description": "Install Orchestrix multi-agent infrastructure into any project. One command: npx orchestrix install",
5
5
  "bin": {
6
6
  "orchestrix": "bin/o8x.js"
@@ -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
  },