@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.
Files changed (2) hide show
  1. package/dist/arbor.js +3 -3
  2. 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 the parent Computer or a Run; connected humans receive ambient GitHub authorization and Git identity without workspace credentials. Background work returns a processId, and a missed isolated-Run foreground response can be recovered from computer_run_receipt.operations with computer_process_read instead of repeating the mutation.",
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("timeout in milliseconds, from 1,000 through 1,800,000"),
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 opaque processId returned by computer_exec(background=true), proc_…"),
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lambdacurry/arbor",
3
- "version": "0.20.26",
3
+ "version": "0.20.28",
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",