@miraland-labs/conduit-bridge 0.9.4 → 0.9.5

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
@@ -2,7 +2,7 @@
2
2
 
3
3
  Local Bridge CLI for [Conduit](https://github.com/miralandlabs/conduit). Connects a computer to one organization, claims work, and drives a local agent.
4
4
 
5
- **Current npm:** `0.9.4` — **ops** helpers for macOS / Linux / Windows, LaunchAgent/systemd **PATH** for `~/.local/bin`, disconnect/disengage, multi-driver lanes, shared slots **1–4**, worktrees, optional `--ensure-checkout`.
5
+ **Current npm:** `0.9.5` — **ops** helpers for macOS / Linux / Windows, LaunchAgent/systemd **PATH** for `~/.local/bin`, disconnect/disengage, multi-driver lanes, shared slots **1–4**, worktrees, optional `--ensure-checkout`.
6
6
 
7
7
  ## Prerequisites
8
8
 
package/dist/driver.js CHANGED
@@ -452,8 +452,9 @@ export function cursorPermissionsForGrants(grants, verificationCommands = []) {
452
452
  * contract (validateDeliveryReport rejects reported repository changes without repo_write, Invariant 9).
453
453
  */
454
454
  export function cursorRunArgs(input) {
455
- // --trust: Bridge only runs in the operator-configured workspace from install-service.
456
- const args = ["-p", "--output-format", "json", "--workspace", input.workspace, "--trust"];
455
+ // Do not pass --trust: current Cursor Agent CLI rejects it ("unknown option '--trust'").
456
+ // Workspace authority is the operator-configured Bridge workspace; tool authority is .cursor/cli.json.
457
+ const args = ["-p", "--output-format", "json", "--workspace", input.workspace];
457
458
  if (input.model)
458
459
  args.push("--model", input.model);
459
460
  if (input.resumeSessionId)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@miraland-labs/conduit-bridge",
3
- "version": "0.9.4",
3
+ "version": "0.9.5",
4
4
  "description": "Conduit Bridge CLI — join, connect, disconnect, multi-driver lanes, and run Claude Code / Codex / Cursor / OpenCode / Kiro / Antigravity agents for a Conduit organization",
5
5
  "type": "module",
6
6
  "bin": {