conductor-oss-native-linux-x64 0.20.2 → 0.21.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
@@ -47,10 +47,13 @@ Conductor adds:
47
47
  npx conductor-oss@latest
48
48
  ```
49
49
 
50
- This starts the Rust backend and Next.js dashboard, then opens the browser. Default ports:
50
+ This starts the Rust backend and Next.js dashboard, then opens the browser.
51
51
 
52
- - Dashboard: `http://127.0.0.1:4747`
53
- - Backend: `http://127.0.0.1:4749`
52
+ - Default dashboard port: `http://127.0.0.1:4747` (overridable)
53
+ - Backend port: `http://127.0.0.1:4749` in the launcher flow (or whatever you configure for CLI)
54
+ - Rust CLI direct `conductor start` defaults to `http://127.0.0.1:4747` unless `--port` is set.
55
+
56
+ For source checkouts, `bun run dev:full` launches the same stack with dashboard defaulting to `3000` in this repo.
54
57
 
55
58
  ### Initialize an existing repo
56
59
 
@@ -65,7 +68,7 @@ This scaffolds `conductor.yaml`, `CONDUCTOR.md`, and `.conductor/conductor.db` i
65
68
 
66
69
  ```bash
67
70
  npm install -g conductor-oss
68
- co
71
+ co start
69
72
  ```
70
73
 
71
74
  The launcher registers three aliases: `conductor-oss`, `conductor`, and `co`.
@@ -253,14 +256,23 @@ bun install
253
256
  ```bash
254
257
  bun run dev:full # Dashboard (port 3000) + Rust backend (port 4749)
255
258
  bun run dev # Dashboard only
256
- bun run dev:backend # Backend only (or: cargo run --bin conductor-server)
259
+ bun run dev:backend # Backend only (or: `cargo run --bin conductor -- --workspace . start --port 4749`)
257
260
  bun run build # Full production build
258
261
  bun run typecheck # TypeScript type checking
259
262
 
263
+ export CONDUCTOR_DEV_DASHBOARD_PORT=3000 # optional
264
+ export CONDUCTOR_DEV_BACKEND_PORT=4749 # optional
265
+
260
266
  cargo test --workspace # Rust tests
261
267
  cargo clippy --workspace -- -D warnings # Rust linting
262
268
  ```
263
269
 
270
+ ```bash
271
+ # If you want only the frontend on port 3000 and backend separately:
272
+ bun run --cwd packages/web dev
273
+ cargo run --bin conductor -- --workspace . start --port 4749
274
+ ```
275
+
264
276
  ### Dev Ports
265
277
 
266
278
  | Service | Port |
@@ -320,3 +332,22 @@ conductor-oss/
320
332
  ## License
321
333
 
322
334
  MIT. See [LICENSE](LICENSE).
335
+
336
+ ## Conductor Bridge
337
+
338
+ Conductor Bridge lets you keep the backend on your machine while accessing the dashboard from a browser through a relay.
339
+
340
+ ### CLI commands
341
+
342
+ ```bash
343
+ conductor bridge connect --relay ws://127.0.0.1:8080
344
+ conductor bridge status
345
+ conductor bridge disconnect
346
+ ```
347
+
348
+ ### Runtime ports
349
+
350
+ - Relay: `http://127.0.0.1:8080`
351
+ - Dashboard: `http://127.0.0.1:3000`
352
+ - Backend: `http://127.0.0.1:4749`
353
+
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.20.2",
3
+ "version": "0.21.0",
4
4
  "license": "MIT",
5
5
  "private": false,
6
6
  "os": [