@lambdacurry/arbor 0.21.17 → 0.21.18
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 +6 -4
- package/package.json +1 -1
package/dist/arbor.js
CHANGED
|
@@ -18404,6 +18404,7 @@ var MCP_OUTPUT_SCHEMAS = {
|
|
|
18404
18404
|
nextAction: exports_external.literal("computer_process_read").optional()
|
|
18405
18405
|
}),
|
|
18406
18406
|
computer_process_read: exports_external.looseObject({
|
|
18407
|
+
processId: exports_external.string(),
|
|
18407
18408
|
status: exports_external.string(),
|
|
18408
18409
|
endedAt: timestamp.nullable().optional(),
|
|
18409
18410
|
durationMs: exports_external.number().int().min(0).nullable().optional(),
|
|
@@ -18421,10 +18422,10 @@ var MCP_OUTPUT_SCHEMAS = {
|
|
|
18421
18422
|
reasonCode: exports_external.string()
|
|
18422
18423
|
}).optional(),
|
|
18423
18424
|
recovery: exports_external.looseObject({
|
|
18424
|
-
state: exports_external.enum(["provider-timeout", "provider-lost", "unknown"]),
|
|
18425
|
+
state: exports_external.enum(["not-routed", "provider-timeout", "provider-lost", "unknown"]),
|
|
18425
18426
|
reasonCode: exports_external.string(),
|
|
18426
|
-
mutationRetrySafety: exports_external.enum(["unsafe", "unknown"]),
|
|
18427
|
-
nextAction: exports_external.enum(["computer_process_read", "computer_run_receipt"])
|
|
18427
|
+
mutationRetrySafety: exports_external.enum(["safe", "unsafe", "unknown"]),
|
|
18428
|
+
nextAction: exports_external.enum(["computer_exec", "computer_process_read", "computer_run_receipt"])
|
|
18428
18429
|
}).optional()
|
|
18429
18430
|
}),
|
|
18430
18431
|
computer_process_terminate: exports_external.looseObject({
|
|
@@ -18722,6 +18723,7 @@ var OUTPUT_SHAPERS = {
|
|
|
18722
18723
|
["cwd", input.cwd === undefined ? result.cwd : undefined]
|
|
18723
18724
|
]),
|
|
18724
18725
|
computer_process_read: (result) => defined([
|
|
18726
|
+
["processId", result.processId],
|
|
18725
18727
|
["status", result.status],
|
|
18726
18728
|
["stdout", result.stdout],
|
|
18727
18729
|
["stderr", result.stderr],
|
|
@@ -19700,7 +19702,7 @@ var ACTION_DEFINITIONS = [
|
|
|
19700
19702
|
{
|
|
19701
19703
|
name: "computer_process_read",
|
|
19702
19704
|
title: "Read a background process",
|
|
19703
|
-
description: "Read
|
|
19705
|
+
description: "Read one exact provider-owned process from computer_exec, including a foreground operation recovered from a Run receipt, and use nextCursor for incremental output. Returns the same processId plus compact activity, terminal result, or durable not-routed proof; only that proof makes a fresh computer_exec safe.",
|
|
19704
19706
|
inputSchema: {
|
|
19705
19707
|
computerSessionId: exports_external.string().optional().describe("the computerSessionId returned by computer_open, cms_…; required unless runId is supplied"),
|
|
19706
19708
|
runId: exports_external.string().optional().describe("the Run that owns this process, if it was started inside a Run"),
|
package/package.json
CHANGED