@lambdacurry/arbor 0.20.25 → 0.20.26
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 +8 -2
- 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
|
}),
|
|
@@ -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