conductor-oss-native-linux-x64 0.18.4 → 0.19.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 CHANGED
@@ -50,7 +50,7 @@ npx conductor-oss@latest
50
50
  This starts the Rust backend and Next.js dashboard, then opens the browser. Default ports:
51
51
 
52
52
  - Dashboard: `http://127.0.0.1:4747`
53
- - Backend: `http://127.0.0.1:4748`
53
+ - Backend: `http://127.0.0.1:4749`
54
54
 
55
55
  ### Initialize an existing repo
56
56
 
@@ -91,7 +91,7 @@ Agents appear in the dashboard picker based on what is installed and authenticat
91
91
 
92
92
  ## Native Terminal Experience
93
93
 
94
- Conductor launches agents into their real terminal UIs — not a synthetic chat shell. Claude Code runs as Claude Code. Codex runs as Codex. The dashboard terminal is a live viewer over the backend-owned PTY session using the TTyD binary protocol, so reconnecting or switching sessions preserves the native agent experience.
94
+ Conductor launches agents into their real terminal UIs — not a synthetic chat shell. Claude Code runs as Claude Code. Codex runs as Codex. Interactive sessions are now `ttyd`-first: each live agent gets a real ttyd-backed PTY, the dashboard connects either straight to that loopback ttyd socket on local desktops or through Conductor's authenticated websocket relay on remote/private paths, and reconnecting still preserves the native agent experience.
95
95
 
96
96
  <div align="center">
97
97
 
@@ -207,7 +207,7 @@ Additional runtime artifacts:
207
207
 
208
208
  | Crate | Purpose |
209
209
  |-------|---------|
210
- | `conductor-server` | Axum HTTP server — 24 route modules, session manager, PTY runtime, SSE streaming |
210
+ | `conductor-server` | Axum HTTP server — 22 route modules, session manager, PTY runtime, SSE streaming |
211
211
  | `conductor-core` | Shared types, board parser, configuration, task and session models |
212
212
  | `conductor-executors` | 10 agent adapters — binary detection, launch commands, prompt delivery |
213
213
  | `conductor-db` | SQLite persistence via sqlx with compile-time checked queries |
@@ -227,11 +227,11 @@ Additional runtime artifacts:
227
227
 
228
228
  - **Local-first** — no cloud relay, no credential proxying, all state on disk
229
229
  - **SQLite-only** — single-file database, no external DB dependency
230
- - **Direct PTY** — shell-backed sessions via `portable-pty`, not synthetic chat shells
230
+ - **TTyd-backed PTY** — shell-backed sessions via real `ttyd`, not synthetic chat shells
231
231
  - **Agent-agnostic** — Conductor orchestrates; each agent keeps its own auth and billing
232
232
  - **Markdown-native** — boards live in `CONDUCTOR.md`, readable in any editor or Obsidian
233
233
  - **Worktree isolation** — each session gets its own git worktree to prevent conflicts
234
- - **TTyD protocol** — binary WebSocket framing for efficient terminal streaming
234
+ - **TTYD-first streaming** — real `ttyd` sessions with backend-authenticated relay and restore-aware capture
235
235
 
236
236
  ## Develop From Source
237
237
 
@@ -304,7 +304,7 @@ conductor-oss/
304
304
  - GitHub-integrated flows (PR creation, check monitoring) work best with `gh` installed and authenticated
305
305
  - Preview tooling requires a repo that exposes a local dev server URL
306
306
  - Remote access was intentionally removed — use your own network or proxy layer for remote setups
307
- - The runtime is direct PTY-only; legacy tmux sessions are treated as compatibility data
307
+ - Interactive sessions run through ttyd; legacy tmux and legacy direct sessions are compatibility data that should be archived instead of resumed
308
308
 
309
309
  ## Links
310
310
 
package/bin/conductor CHANGED
Binary file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "conductor-oss-native-linux-x64",
3
- "version": "0.18.4",
3
+ "version": "0.19.0",
4
4
  "license": "MIT",
5
5
  "private": false,
6
6
  "os": [