conductor-oss-native-linux-x64 0.14.0 → 0.15.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 +7 -10
- package/bin/conductor +0 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -49,7 +49,7 @@ If you already use tools like Claude Code, Codex, Gemini, Qwen Code, Cursor Agen
|
|
|
49
49
|
- Markdown-native planning: boards remain readable outside the app.
|
|
50
50
|
- Multi-agent support with adapter-based discovery and launch logic.
|
|
51
51
|
- Worktree-aware execution for parallel changes in the same repository.
|
|
52
|
-
- Session recovery after backend restarts, including
|
|
52
|
+
- Session recovery after backend restarts, including direct PTY terminal restore for live runtimes.
|
|
53
53
|
- GitHub-aware flows for repository import, PR metadata, checks, and project syncing.
|
|
54
54
|
- MCP server mode for integrating Conductor with external clients.
|
|
55
55
|
|
|
@@ -76,7 +76,6 @@ Availability still depends on what is installed and authenticated on your machin
|
|
|
76
76
|
|
|
77
77
|
- Node.js `>= 18`
|
|
78
78
|
- `git`
|
|
79
|
-
- `tmux`
|
|
80
79
|
- at least one supported coding-agent CLI installed and authenticated
|
|
81
80
|
|
|
82
81
|
### Launch Conductor
|
|
@@ -155,7 +154,7 @@ Common launcher commands:
|
|
|
155
154
|
- `co list` - list sessions
|
|
156
155
|
- `co status` - summarize session state
|
|
157
156
|
- `co send` - send a follow-up to a session
|
|
158
|
-
- `co attach` -
|
|
157
|
+
- `co attach` - legacy command kept only to explain the direct-terminal migration
|
|
159
158
|
- `co restore` - restore an exited session
|
|
160
159
|
- `co retry` - create a new attempt from an earlier task or session
|
|
161
160
|
- `co kill` - terminate a session
|
|
@@ -176,8 +175,8 @@ Conductor uses a small set of local files:
|
|
|
176
175
|
Markdown kanban board used for planning and dispatch.
|
|
177
176
|
- `.conductor/conductor.db`
|
|
178
177
|
SQLite persistence for sessions, metadata, and runtime state.
|
|
179
|
-
- `.conductor/rust-backend/
|
|
180
|
-
Runtime artifacts for
|
|
178
|
+
- `.conductor/rust-backend/detached/`
|
|
179
|
+
Runtime artifacts for direct PTY-backed sessions.
|
|
181
180
|
- `attachments/...`
|
|
182
181
|
Uploaded session files and generated artifacts.
|
|
183
182
|
|
|
@@ -202,7 +201,7 @@ The Rust backend is the orchestration core. It handles:
|
|
|
202
201
|
|
|
203
202
|
- session lifecycle and spawn queueing
|
|
204
203
|
- executor discovery and agent adapters
|
|
205
|
-
-
|
|
204
|
+
- direct PTY runtime management
|
|
206
205
|
- workspace and worktree preparation
|
|
207
206
|
- SQLite persistence
|
|
208
207
|
- SSE event streaming
|
|
@@ -245,7 +244,7 @@ Key runtime properties:
|
|
|
245
244
|
|
|
246
245
|
- local-first
|
|
247
246
|
- SQLite-only persistence
|
|
248
|
-
-
|
|
247
|
+
- direct PTY-backed interactive sessions
|
|
249
248
|
- agent-agnostic execution
|
|
250
249
|
- Markdown-native board state
|
|
251
250
|
|
|
@@ -256,8 +255,6 @@ Requirements:
|
|
|
256
255
|
- Bun `>= 1.2`
|
|
257
256
|
- Node.js `>= 18`
|
|
258
257
|
- Rust toolchain
|
|
259
|
-
- `tmux`
|
|
260
|
-
|
|
261
258
|
Install dependencies:
|
|
262
259
|
|
|
263
260
|
```bash
|
|
@@ -289,7 +286,7 @@ bun run typecheck
|
|
|
289
286
|
|
|
290
287
|
## Current Constraints
|
|
291
288
|
|
|
292
|
-
-
|
|
289
|
+
- The interactive runtime is direct PTY-backed; old tmux sessions are treated as legacy compatibility data.
|
|
293
290
|
- Agent behavior and output quality depend on the upstream CLI you install.
|
|
294
291
|
- GitHub-heavy flows work best with `gh` installed and authenticated.
|
|
295
292
|
- Preview tooling is strongest when a repo exposes a local dev server or preview URL.
|
package/bin/conductor
CHANGED
|
Binary file
|