orchestrai 0.1.13 → 0.1.14
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 +94 -92
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,92 +1,94 @@
|
|
|
1
|
-
# orchestrai
|
|
2
|
-
|
|
3
|
-
Run OrchestrAI — a local, terminal-oriented multi-agent DevOps orchestration prototype — with nothing pre-installed. 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).
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
```
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
```
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
```
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
```
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
```
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
|
48
|
-
|
|
49
|
-
|
|
|
50
|
-
|
|
51
|
-
macOS
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
```
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
orchestrai
|
|
69
|
-
orchestrai
|
|
70
|
-
orchestrai --
|
|
71
|
-
orchestrai --
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
```
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
```
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
1
|
+
# orchestrai
|
|
2
|
+
|
|
3
|
+

|
|
4
|
+
|
|
5
|
+
Run OrchestrAI — a local, terminal-oriented multi-agent DevOps orchestration prototype — with nothing pre-installed. 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).
|
|
6
|
+
|
|
7
|
+
## Install
|
|
8
|
+
|
|
9
|
+
```
|
|
10
|
+
npm install -g orchestrai@latest
|
|
11
|
+
```
|
|
12
|
+
|
|
13
|
+
(pin a specific version instead of `@latest` any time you want a reproducible install — see [Reproducibility](#reproducibility) below.)
|
|
14
|
+
|
|
15
|
+
## Set up your project, once
|
|
16
|
+
|
|
17
|
+
```
|
|
18
|
+
orchestrai init
|
|
19
|
+
```
|
|
20
|
+
|
|
21
|
+
Walks you through the target project path, which of the 5 agents to run, and whether to enable the optional LLM planning harness (provider/model/API key). Answer once — it's saved per project, in a `.orchestrai/` folder next to where you run it.
|
|
22
|
+
|
|
23
|
+
## Run it
|
|
24
|
+
|
|
25
|
+
```
|
|
26
|
+
orchestrai
|
|
27
|
+
```
|
|
28
|
+
|
|
29
|
+
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. In a real terminal it also opens an interactive terminal viewer alongside the dashboard.
|
|
30
|
+
|
|
31
|
+
## Prefer a one-shot run instead?
|
|
32
|
+
|
|
33
|
+
```
|
|
34
|
+
npx orchestrai@latest --project /path/to/your/project
|
|
35
|
+
```
|
|
36
|
+
|
|
37
|
+
or, with Bun:
|
|
38
|
+
|
|
39
|
+
```
|
|
40
|
+
bunx orchestrai@latest --project /path/to/your/project
|
|
41
|
+
```
|
|
42
|
+
|
|
43
|
+
Skips the global install and the saved per-project setup — useful for a quick one-off run, but `init` is the better path if you'll run it against the same project more than once.
|
|
44
|
+
|
|
45
|
+
## Supported platforms
|
|
46
|
+
|
|
47
|
+
| Platform | Package |
|
|
48
|
+
|---|---|
|
|
49
|
+
| Windows x64 | `orchestrai-windows-x64` |
|
|
50
|
+
| Linux x64 | `orchestrai-linux-x64` |
|
|
51
|
+
| macOS Apple Silicon (arm64) | `orchestrai-darwin-arm64` |
|
|
52
|
+
|
|
53
|
+
macOS Intel (x64) isn't published yet. If `npx`/`bunx` reports no build for your platform, that's why.
|
|
54
|
+
|
|
55
|
+
### macOS: unsigned binary
|
|
56
|
+
|
|
57
|
+
The macOS build isn't code-signed or notarized. On first run, macOS Gatekeeper will likely refuse to open it. Clear that with:
|
|
58
|
+
|
|
59
|
+
```
|
|
60
|
+
xattr -d com.apple.quarantine "$(which orchestrai)"
|
|
61
|
+
```
|
|
62
|
+
|
|
63
|
+
(or the equivalent path npm installed it under) before running it again.
|
|
64
|
+
|
|
65
|
+
## All flags
|
|
66
|
+
|
|
67
|
+
```
|
|
68
|
+
orchestrai # start everything, interactively in a real terminal
|
|
69
|
+
orchestrai init # interactive setup wizard, run once per project
|
|
70
|
+
orchestrai --project "/path/to/app" # override the saved/inferred target path for this run
|
|
71
|
+
orchestrai --only devops-agent # start a subset of services (comma-separated)
|
|
72
|
+
orchestrai --headless # backend only, plain logs — no interactive viewer
|
|
73
|
+
orchestrai --help
|
|
74
|
+
```
|
|
75
|
+
|
|
76
|
+
## Reproducibility
|
|
77
|
+
|
|
78
|
+
Each published version of this package corresponds to a specific, immutable build. Pin a version instead of `@latest` any time you want that guarantee:
|
|
79
|
+
|
|
80
|
+
```
|
|
81
|
+
npm install -g orchestrai@0.1.12
|
|
82
|
+
```
|
|
83
|
+
|
|
84
|
+
or for the one-shot form:
|
|
85
|
+
|
|
86
|
+
```
|
|
87
|
+
npx orchestrai@0.1.12 --project /path/to/your/project
|
|
88
|
+
```
|
|
89
|
+
|
|
90
|
+
Either always resolves the identical binary, not a rolling "latest."
|
|
91
|
+
|
|
92
|
+
## Source
|
|
93
|
+
|
|
94
|
+
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.
|
|
3
|
+
"version": "0.1.14",
|
|
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": {
|