@miraland-labs/conduit-bridge 0.11.0 → 0.11.1

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/dist/execution.js CHANGED
@@ -340,11 +340,11 @@ async function runClaimedAssignment(client, config, driver, workspace, brief, ta
340
340
  catch (error) {
341
341
  const detail = error instanceof Error ? error.message : "missing stamped execution_class";
342
342
  console.error(`Assignment ${taskId}: ${detail}`);
343
- // Retryable: a machine that ops-installed Bridge 0.11 before the control-plane deploy can recover
344
- // once assignments carry stamped execution_class (deploy CP publish ops install; see handoff).
343
+ // Non-retryable: control plane restamps on dispatch/claim. Infinite retry here burned path-4
344
+ // attempt budget when a pre-inversion task row still lacked the stamp.
345
345
  await queueTerminal(client, taskId, {
346
346
  action: "fail",
347
- body: { error: detail, retryable: true, idempotency_key: `bridge:fail:${active.attemptId}:missing-class` },
347
+ body: { error: detail, retryable: false, idempotency_key: `bridge:fail:${active.attemptId}:missing-class` },
348
348
  });
349
349
  return;
350
350
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@miraland-labs/conduit-bridge",
3
- "version": "0.11.0",
3
+ "version": "0.11.1",
4
4
  "description": "Conduit Bridge CLI — join, connect, disconnect, multi-driver lanes, and run Claude Code / Codex / Cursor / OpenCode / Pi / Kiro / Antigravity agents for a Conduit organization",
5
5
  "type": "module",
6
6
  "bin": {