@lambdacurry/arbor 0.20.28 → 0.20.30

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.
Files changed (2) hide show
  1. package/dist/arbor.js +4 -2
  2. package/package.json +1 -1
package/dist/arbor.js CHANGED
@@ -18589,7 +18589,7 @@ var ACTION_DEFINITIONS = [
18589
18589
  {
18590
18590
  name: "computer_run_start",
18591
18591
  title: "Start a run",
18592
- description: "Start one bounded unit of work inside an opened Thread Computer when you need a read or write Run. Returns runId, placement/status, and compact durability facts; detailed base Git/snapshot state remains inspectable from the Run receipt, and write Runs default to isolated unless execution='shared' is chosen.",
18592
+ description: "Start one bounded unit of work inside an opened Thread Computer. Write Runs default to isolated; if isolated provisioning fails after the durable Run exists, the error returns its runId and points to computer_run_receipt so the caller can inspect the terminal reason without listing or guessing.",
18593
18593
  inputSchema: {
18594
18594
  computerSessionId: exports_external.string().describe("the computerSessionId returned by computer_open, cms_…"),
18595
18595
  mode: exports_external.enum(["read", "write"]).describe("write for mutable work; read for shared inspection"),
@@ -18652,7 +18652,7 @@ var ACTION_DEFINITIONS = [
18652
18652
  {
18653
18653
  name: "computer_exec",
18654
18654
  title: "Run a command",
18655
- description: "Run one bounded shell operation in a parent Computer or Run; connected humans get ambient GitHub authorization. An explicit Linux foreground timeout terminates provider execution; recover a missed isolated-Run transport response by using computer_run_receipt.operations[].operationId with computer_process_read instead of repeating the mutation.",
18655
+ description: "Run one bounded shell operation in a parent Computer or Run with ambient GitHub authorization for connected humans. For long work prefer background:true + computer_process_read; explicit timeout terminates execution, while after a missed isolated response use computer_run_receipt.operations[].operationId with computer_process_read instead of repeating the mutation.",
18656
18656
  inputSchema: {
18657
18657
  computerSessionId: exports_external.string().optional().describe("the computerSessionId returned by computer_open, cms_…; required unless runId is supplied"),
18658
18658
  command: exports_external.string().min(1).describe("the shell command to run"),
@@ -20432,6 +20432,8 @@ function parseErrorDetails(value) {
20432
20432
  };
20433
20433
  }
20434
20434
  }
20435
+ if (typeof raw.runId === "string")
20436
+ details.runId = raw.runId;
20435
20437
  if (typeof raw.compatibilityState === "string") {
20436
20438
  details.compatibilityState = raw.compatibilityState;
20437
20439
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lambdacurry/arbor",
3
- "version": "0.20.28",
3
+ "version": "0.20.30",
4
4
  "description": "The Arbor CLI — a shared workspace for people and agents. The human + headless-agent write path over Arbor's guarded operation surface.",
5
5
  "keywords": [
6
6
  "agents",