@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 +3 -3
- package/package.json +1 -1
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
|
-
//
|
|
344
|
-
//
|
|
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:
|
|
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.
|
|
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": {
|