orchestrai 0.1.4 → 0.1.5

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 +11 -4
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # orchestrai
2
2
 
3
- Run [OrchestrAI](https://github.com/Muhamad-Yussuf/devops-mcp-server) — a local, terminal-oriented multi-agent DevOps orchestration prototype — with nothing pre-installed:
3
+ Run OrchestrAI — a local, terminal-oriented multi-agent DevOps orchestration prototype — with nothing pre-installed:
4
4
 
5
5
  ```
6
6
  npx orchestrai --project /path/to/your/project
@@ -14,6 +14,8 @@ bunx orchestrai --project /path/to/your/project
14
14
 
15
15
  No Bun, no clone, no separate download step — the right platform binary installs automatically as part of this package (an optional dependency scoped to your OS/architecture), and this command just runs it.
16
16
 
17
+ `orchestrai` starts the full local stack — 5 specialist agents (planning, DevOps, testing, documentation, security), an MCP tool server, and an orchestrator that routes work between them — then opens a **dashboard at [http://localhost:3000/dashboard](http://localhost:3000/dashboard)**. That's where you submit tasks and watch them run.
18
+
17
19
  ## Supported platforms
18
20
 
19
21
  | Platform | Package |
@@ -22,7 +24,7 @@ No Bun, no clone, no separate download step — the right platform binary instal
22
24
  | Linux x64 | `orchestrai-linux-x64` |
23
25
  | macOS Apple Silicon (arm64) | `orchestrai-darwin-arm64` |
24
26
 
25
- macOS Intel (x64) isn't published yet. If `npx`/`bunx` reports no build for your platform, that's why — build from source instead (see the main repository).
27
+ macOS Intel (x64) isn't published yet. If `npx`/`bunx` reports no build for your platform, that's why.
26
28
 
27
29
  ### macOS: unsigned binary
28
30
 
@@ -40,12 +42,17 @@ xattr -d com.apple.quarantine "$(which orchestrai)"
40
42
  orchestrai # start everything, interactively in a real terminal
41
43
  orchestrai init # interactive setup wizard, run once per project
42
44
  orchestrai --project "/path/to/app"
43
- orchestrai --only devops-agent
45
+ orchestrai --only devops-agent # start a subset of services (comma-separated)
46
+ orchestrai --headless # backend only, plain logs — no interactive viewer
44
47
  orchestrai --help
45
48
  ```
46
49
 
47
- See the [main repository](https://github.com/Muhamad-Yussuf/devops-mcp-server) for full documentation.
50
+ `orchestrai init` walks you through target path, which services to run, and whether to enable the optional LLM planning harness (provider/model/API key) — answer once, and a plain `orchestrai` afterward reuses that setup with no flags needed.
48
51
 
49
52
  ## Reproducibility
50
53
 
51
54
  Each published version of this package corresponds to a specific, immutable build — pinning a version (`npx orchestrai@1.2.3`) always resolves the identical binary, not a rolling "latest."
55
+
56
+ ## Source
57
+
58
+ The source repository is currently private, so it isn't publicly browsable — everything you need to actually run this is in this package itself (`orchestrai --help` and `orchestrai init` cover it). This README will link out to public docs if/when that changes.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "orchestrai",
3
- "version": "0.1.4",
3
+ "version": "0.1.5",
4
4
  "description": "OrchestrAI — run the standalone orchestrai binary via bunx/npx with nothing pre-installed. The right platform binary is installed automatically as an optional dependency; no network download at runtime.",
5
5
  "license": "MIT",
6
6
  "bin": {