@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.
- package/dist/arbor.js +4 -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
|
|
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
|
|
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