conductor-oss-native-linux-x64 0.27.3 → 0.29.0
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 +11 -2
- package/bin/conductor +0 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
|
|
17
17
|
---
|
|
18
18
|
|
|
19
|
-
Conductor OSS is a local-first orchestration layer for AI coding agents. It turns Markdown kanban boards into dispatchable work, launches installed coding CLIs in isolated git worktrees, and gives you a browser dashboard for live terminal sessions, diffs, previews, and
|
|
19
|
+
Conductor OSS is a local-first orchestration layer for AI coding agents. It turns Markdown kanban boards into dispatchable work, launches installed coding CLIs in isolated git worktrees, and gives you a browser dashboard for live terminal sessions, diffs, previews, recovery workflows, and multi-agent skills management.
|
|
20
20
|
|
|
21
21
|
By default, everything runs on your machine. Conductor keeps board state in Markdown, stores runtime metadata in SQLite, and leaves authentication and billing to the upstream agent CLIs.
|
|
22
22
|
|
|
@@ -52,6 +52,7 @@ Running the package with no arguments defaults to `start --open`.
|
|
|
52
52
|
- Primary launcher URL: `http://127.0.0.1:4747`
|
|
53
53
|
- Launcher-managed Rust backend: `http://127.0.0.1:4748` by default
|
|
54
54
|
- The native Rust `conductor start` binary uses `4747` unless you override `--port`
|
|
55
|
+
- When launched through `co start`, the dashboard inherits the Rust backend URL automatically so the web app can proxy skills, preview, and session routes without extra setup.
|
|
55
56
|
|
|
56
57
|
### Initialize an existing repo
|
|
57
58
|
|
|
@@ -82,12 +83,20 @@ Conductor ships adapters for the major coding CLIs it knows how to discover, lau
|
|
|
82
83
|
| Gemini | `gemini` |
|
|
83
84
|
| Qwen Code | `qwen` |
|
|
84
85
|
| Amp | `amp` |
|
|
85
|
-
| Cursor
|
|
86
|
+
| Cursor CLI | `cursor-agent` |
|
|
86
87
|
| OpenCode | `opencode` |
|
|
87
88
|
| Droid | `droid` |
|
|
88
89
|
| GitHub Copilot | `gh copilot` / `copilot` |
|
|
89
90
|
| CCR | `ccr` |
|
|
90
91
|
|
|
92
|
+
## Skills
|
|
93
|
+
|
|
94
|
+
The dashboard includes a Skills tab for each session. It can install curated official skill bundles for Claude Code, Codex, Gemini, Amp, Cursor CLI, OpenCode, Droid, Qwen Code, CCR, and GitHub Copilot.
|
|
95
|
+
|
|
96
|
+
Skills are mapped to each agent's native folder layout, so user-scoped and workspace-scoped installs land in the right place automatically. The backend also detects custom skill folders already present on the machine and lets you activate or deactivate skills for the current session.
|
|
97
|
+
|
|
98
|
+
If you run the dashboard outside `co start`, set `CONDUCTOR_BACKEND_URL` or `NEXT_PUBLIC_CONDUCTOR_BACKEND_URL` so the web app can reach the Rust backend.
|
|
99
|
+
|
|
91
100
|
## Native Terminal Experience
|
|
92
101
|
|
|
93
102
|
Conductor launches agents into their real terminal UIs. Claude Code runs as Claude Code. Codex runs as Codex. Interactive sessions are ttyd-backed PTYs, so reconnects, resize events, and terminal restore behave like a real terminal session rather than a browser chat imitation.
|
package/bin/conductor
CHANGED
|
Binary file
|