orchestrai 0.1.15 → 0.1.17
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 +2 -2
- package/package.json +4 -4
package/README.md
CHANGED
|
@@ -18,7 +18,7 @@ npm install -g orchestrai@latest
|
|
|
18
18
|
orchestrai init
|
|
19
19
|
```
|
|
20
20
|
|
|
21
|
-
Walks you through the target project path, which of the
|
|
21
|
+
Walks you through the target project path, which of the 4 agents to run, each selected agent's own optional LLM harness, and a required LLM provider/model/API key (the orchestrator's own adaptive planner needs one to start at all). Answer once — it's saved per project, in a `.orchestrai/` folder next to where you run it.
|
|
22
22
|
|
|
23
23
|
## Run it
|
|
24
24
|
|
|
@@ -26,7 +26,7 @@ Walks you through the target project path, which of the 5 agents to run, and whe
|
|
|
26
26
|
orchestrai
|
|
27
27
|
```
|
|
28
28
|
|
|
29
|
-
Starts the full local stack —
|
|
29
|
+
Starts the full local stack — 4 specialist agents (DevOps, testing, documentation, security), an MCP tool server, and an orchestrator that routes work between them (including its own adaptive planner — it needs an LLM provider key configured to start) — 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
30
|
|
|
31
31
|
## Prefer a one-shot run instead?
|
|
32
32
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "orchestrai",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.17",
|
|
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": {
|
|
@@ -12,9 +12,9 @@
|
|
|
12
12
|
"logo.png"
|
|
13
13
|
],
|
|
14
14
|
"optionalDependencies": {
|
|
15
|
-
"orchestrai-windows-x64": "0.1.
|
|
16
|
-
"orchestrai-linux-x64": "0.1.
|
|
17
|
-
"orchestrai-darwin-arm64": "0.1.
|
|
15
|
+
"orchestrai-windows-x64": "0.1.17",
|
|
16
|
+
"orchestrai-linux-x64": "0.1.17",
|
|
17
|
+
"orchestrai-darwin-arm64": "0.1.17"
|
|
18
18
|
},
|
|
19
19
|
"engines": {
|
|
20
20
|
"node": ">=18"
|