@lambdacurry/arbor 0.20.26 → 0.20.28
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 +3 -3
- package/package.json +1 -1
package/dist/arbor.js
CHANGED
|
@@ -18652,13 +18652,13 @@ var ACTION_DEFINITIONS = [
|
|
|
18652
18652
|
{
|
|
18653
18653
|
name: "computer_exec",
|
|
18654
18654
|
title: "Run a command",
|
|
18655
|
-
description: "Run one bounded shell operation in
|
|
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.",
|
|
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"),
|
|
18659
18659
|
runId: exports_external.string().optional().describe("route this command according to this Run execution placement, run_… (from computer_run_start)"),
|
|
18660
18660
|
cwd: exports_external.string().optional().describe("working directory under /workspace, or under the run; omit to use defaultCwd"),
|
|
18661
|
-
timeout: exports_external.number().int().min(1000).max(1800000).optional().describe("
|
|
18661
|
+
timeout: exports_external.number().int().min(1000).max(1800000).optional().describe("command deadline in milliseconds, from 1,000 through 1,800,000"),
|
|
18662
18662
|
background: exports_external.boolean().optional().describe("start a container process and return its pid"),
|
|
18663
18663
|
activityLabel: exports_external.string().min(1).max(COMPUTER_RUN_ACTIVITY_LABEL_MAX).optional().describe("short human-readable label for run-scoped background work; Arbor records this label instead of the raw command or output"),
|
|
18664
18664
|
activityKind: exports_external.literal("verification").optional().describe("mark a labeled run-scoped background command as a verification check; its provider-observed terminal result is recorded as verification.finished"),
|
|
@@ -18675,7 +18675,7 @@ var ACTION_DEFINITIONS = [
|
|
|
18675
18675
|
inputSchema: {
|
|
18676
18676
|
computerSessionId: exports_external.string().optional().describe("the computerSessionId returned by computer_open, cms_…; required unless runId is supplied"),
|
|
18677
18677
|
runId: exports_external.string().optional().describe("the Run that owns this process, if it was started inside a Run"),
|
|
18678
|
-
processId: exports_external.string().min(1).describe("the
|
|
18678
|
+
processId: exports_external.string().min(1).describe("the processId returned by background exec, or matching computer_run_receipt.operations[].operationId for recovered foreground Run work, proc_…"),
|
|
18679
18679
|
cursor: exports_external.string().optional().describe("continue after nextCursor from the prior process read; omit for a small latest tail"),
|
|
18680
18680
|
maxBytes: exports_external.number().int().min(1024).max(65536).optional().describe("maximum combined output bytes to return; default 4,096, opt up only when needed")
|
|
18681
18681
|
},
|
package/package.json
CHANGED