conductor-oss-native-linux-x64 0.18.2 → 0.18.3
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 +1 -21
- package/bin/conductor +0 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -20,12 +20,6 @@ Conductor OSS is a local-first orchestration platform for AI coding agents. It t
|
|
|
20
20
|
|
|
21
21
|
Everything runs on your machine. State lives in local files and SQLite. Agents keep their own authentication and billing. Conductor is the operating layer around them, not a replacement.
|
|
22
22
|
|
|
23
|
-
<div align="center">
|
|
24
|
-
|
|
25
|
-

|
|
26
|
-
|
|
27
|
-
</div>
|
|
28
|
-
|
|
29
23
|
## Why Conductor
|
|
30
24
|
|
|
31
25
|
Running one agent in one terminal works fine for a single task. When you want to queue multiple tasks across multiple repos, dispatch them to different agents, watch them run in parallel, retry failures, review diffs, and coordinate it all from one place — you need an orchestration layer.
|
|
@@ -275,20 +269,6 @@ cargo clippy --workspace -- -D warnings # Rust linting
|
|
|
275
269
|
| Dashboard (prod) | `http://127.0.0.1:4747` |
|
|
276
270
|
| Rust backend | `http://127.0.0.1:4749` |
|
|
277
271
|
|
|
278
|
-
## Demos
|
|
279
|
-
|
|
280
|
-
<div align="center">
|
|
281
|
-
|
|
282
|
-
| Add a task | Auto-dispatch |
|
|
283
|
-
|:---:|:---:|
|
|
284
|
-
|  |  |
|
|
285
|
-
|
|
286
|
-
| Live terminal | PR creation |
|
|
287
|
-
|:---:|:---:|
|
|
288
|
-
|  |  |
|
|
289
|
-
|
|
290
|
-
</div>
|
|
291
|
-
|
|
292
272
|
## Project Structure
|
|
293
273
|
|
|
294
274
|
```
|
|
@@ -308,7 +288,7 @@ conductor-oss/
|
|
|
308
288
|
│ └── core/ # Shared TypeScript types
|
|
309
289
|
├── docs/
|
|
310
290
|
│ ├── screenshots/ # Dashboard and session screenshots
|
|
311
|
-
│ ├── demo/ # Workflow demo
|
|
291
|
+
│ ├── demo/ # Workflow demo videos
|
|
312
292
|
│ └── terminal-*.md # Terminal protocol and QA docs
|
|
313
293
|
├── .github/workflows/ # CI, release, security, PR checks
|
|
314
294
|
├── Cargo.toml # Rust workspace
|
package/bin/conductor
CHANGED
|
Binary file
|