conductor-oss-native-linux-x64 0.61.11 → 0.61.12
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 -1
- package/bin/conductor +0 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
|
|
9
9
|
[](https://www.npmjs.com/package/conductor-oss)
|
|
10
10
|
[](https://github.com/charannyk06/conductor-oss/actions/workflows/ci.yml)
|
|
11
|
-
[](LICENSE)
|
|
12
12
|
[](https://www.rust-lang.org)
|
|
13
13
|
[](https://github.com/charannyk06/conductor-oss/stargazers)
|
|
14
14
|
|
|
@@ -79,6 +79,9 @@ It is **not**:
|
|
|
79
79
|
- a hosted cloud IDE that stores your code by default
|
|
80
80
|
- a fake browser chat wrapper around terminal output
|
|
81
81
|
- dependent on one agent vendor
|
|
82
|
+
- an operating-system sandbox for coding agents; worktrees separate concurrent Git changes, but agents still run with the permissions of your local account
|
|
83
|
+
|
|
84
|
+
New repositories use each agent's normal permission behavior. Depending on the agent, that may include approval prompts or an agent-provided sandbox; it is not an OS isolation guarantee. The optional automatic permission mode is an explicit trust decision for workspaces where broad local execution is acceptable.
|
|
82
85
|
|
|
83
86
|
## The main user flow
|
|
84
87
|
|
|
@@ -286,6 +289,8 @@ If that backend is reachable off-host and dashboard auth is enabled, also set th
|
|
|
286
289
|
|
|
287
290
|
Relay deployment is separate from dashboard deployment. See `docs/relay-deployment.md` if you are rolling out the paired-device stack.
|
|
288
291
|
|
|
292
|
+
The hosted Chromium preview worker is also deployed independently. See `docs/preview-worker-deployment.md` for its digest-pinned rollout, sandbox smoke test, and private-network requirements.
|
|
293
|
+
|
|
289
294
|
## Develop from source
|
|
290
295
|
|
|
291
296
|
### Prerequisites
|
|
@@ -298,6 +303,7 @@ Relay deployment is separate from dashboard deployment. See `docs/relay-deployme
|
|
|
298
303
|
|
|
299
304
|
```bash
|
|
300
305
|
bun install
|
|
306
|
+
bun install --cwd preview-worker
|
|
301
307
|
```
|
|
302
308
|
|
|
303
309
|
### Run
|
package/bin/conductor
CHANGED
|
Binary file
|