@lambdacurry/arbor 0.20.25 → 0.20.27
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 +11 -5
- package/package.json +1 -1
package/dist/arbor.js
CHANGED
|
@@ -16972,7 +16972,8 @@ var computerCapabilityCard = exports_external.looseObject({
|
|
|
16972
16972
|
diagnostics: exports_external.looseObject({
|
|
16973
16973
|
backend: exports_external.enum(["worker-shell", "container"]),
|
|
16974
16974
|
containerProfile: nullableString,
|
|
16975
|
-
runtimeActive: exports_external.boolean()
|
|
16975
|
+
runtimeActive: exports_external.boolean(),
|
|
16976
|
+
executionReady: exports_external.boolean().nullable()
|
|
16976
16977
|
})
|
|
16977
16978
|
});
|
|
16978
16979
|
var computerOpenProfile = exports_external.object({
|
|
@@ -17751,6 +17752,11 @@ var MCP_OUTPUT_SCHEMAS = {
|
|
|
17751
17752
|
backend: exports_external.enum(["worker-shell", "container"]),
|
|
17752
17753
|
profile: computerProfile.nullable(),
|
|
17753
17754
|
capabilities: computerCapabilityCard,
|
|
17755
|
+
recovery: exports_external.object({
|
|
17756
|
+
state: exports_external.literal("execution-unavailable"),
|
|
17757
|
+
reasonCode: exports_external.enum(["execution_session_unavailable", "provider_timeout"]),
|
|
17758
|
+
nextAction: exports_external.literal("computer_open")
|
|
17759
|
+
}).optional(),
|
|
17754
17760
|
agentBrief: computerAgentBrief,
|
|
17755
17761
|
runtime: jsonObject
|
|
17756
17762
|
}),
|
|
@@ -18646,13 +18652,13 @@ var ACTION_DEFINITIONS = [
|
|
|
18646
18652
|
{
|
|
18647
18653
|
name: "computer_exec",
|
|
18648
18654
|
title: "Run a command",
|
|
18649
|
-
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.",
|
|
18650
18656
|
inputSchema: {
|
|
18651
18657
|
computerSessionId: exports_external.string().optional().describe("the computerSessionId returned by computer_open, cms_…; required unless runId is supplied"),
|
|
18652
18658
|
command: exports_external.string().min(1).describe("the shell command to run"),
|
|
18653
18659
|
runId: exports_external.string().optional().describe("route this command according to this Run execution placement, run_… (from computer_run_start)"),
|
|
18654
18660
|
cwd: exports_external.string().optional().describe("working directory under /workspace, or under the run; omit to use defaultCwd"),
|
|
18655
|
-
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"),
|
|
18656
18662
|
background: exports_external.boolean().optional().describe("start a container process and return its pid"),
|
|
18657
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"),
|
|
18658
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"),
|
|
@@ -18669,7 +18675,7 @@ var ACTION_DEFINITIONS = [
|
|
|
18669
18675
|
inputSchema: {
|
|
18670
18676
|
computerSessionId: exports_external.string().optional().describe("the computerSessionId returned by computer_open, cms_…; required unless runId is supplied"),
|
|
18671
18677
|
runId: exports_external.string().optional().describe("the Run that owns this process, if it was started inside a Run"),
|
|
18672
|
-
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_…"),
|
|
18673
18679
|
cursor: exports_external.string().optional().describe("continue after nextCursor from the prior process read; omit for a small latest tail"),
|
|
18674
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")
|
|
18675
18681
|
},
|
|
@@ -18693,7 +18699,7 @@ var ACTION_DEFINITIONS = [
|
|
|
18693
18699
|
{
|
|
18694
18700
|
name: "computer_status",
|
|
18695
18701
|
title: "Inspect a computer",
|
|
18696
|
-
description: "READ ONLY: Inspect the live PARENT Thread Computer's capabilities,
|
|
18702
|
+
description: "READ ONLY: Inspect the live PARENT Thread Computer's capabilities, execution readiness, processes, and profile. If its named command session is unavailable, command capabilities disappear and recovery points to computer_open; this does not report isolated Run command state, so use computer_run_receipt for Run state or get_computer for durable lineage.",
|
|
18697
18703
|
inputSchema: {
|
|
18698
18704
|
computerSessionId: exports_external.string().describe("the computerSessionId returned by computer_open, cms_…")
|
|
18699
18705
|
},
|
package/package.json
CHANGED