@lambdacurry/arbor 0.20.24 → 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 +13 -7
- 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
|
},
|
|
@@ -20121,7 +20127,7 @@ var ACTION_DEFINITIONS = [
|
|
|
20121
20127
|
{
|
|
20122
20128
|
name: "app_deploy",
|
|
20123
20129
|
title: "Prepare an App deployment",
|
|
20124
|
-
description: "Create an immutable candidate
|
|
20130
|
+
description: "Create an immutable candidate without changing the stable URL. Stateless prepare proves runtime health; durable prepare proves load readiness only (health.phase=load), with same-state activation deferred to app_activate.",
|
|
20125
20131
|
inputSchema: {
|
|
20126
20132
|
appId: exports_external.string().describe("target App, app_…"),
|
|
20127
20133
|
bundleId: exports_external.string().describe("verified immutable AppBundle, bnd_…"),
|
|
@@ -20146,7 +20152,7 @@ var ACTION_DEFINITIONS = [
|
|
|
20146
20152
|
{
|
|
20147
20153
|
name: "app_deployment_get",
|
|
20148
20154
|
title: "Inspect an App deployment",
|
|
20149
|
-
description: "READ ONLY: Inspect one deployment's
|
|
20155
|
+
description: "READ ONLY: Inspect one deployment's state, source bundle, provider receipt, phased redacted health (load|activation|runtime), and config readiness. It cannot modify App state, deployment state, access, or durable SQLite.",
|
|
20150
20156
|
inputSchema: {
|
|
20151
20157
|
appId: exports_external.string().describe("owning App, app_…"),
|
|
20152
20158
|
deploymentId: exports_external.string().describe("deployment, dep_…")
|
|
@@ -20186,11 +20192,11 @@ var ACTION_DEFINITIONS = [
|
|
|
20186
20192
|
},
|
|
20187
20193
|
{
|
|
20188
20194
|
name: "app_activate",
|
|
20189
|
-
title: "Activate a
|
|
20190
|
-
description: "Activate a
|
|
20195
|
+
title: "Activate a prepared deployment",
|
|
20196
|
+
description: "Activate a prepared deployment using expected-active CAS; durable Apps first instantiate the same-state facet and require /__arbor/health. Failures expose bounded providerCode diagnostics; app-specific HTTP compatibility remains separate verification.",
|
|
20191
20197
|
inputSchema: {
|
|
20192
20198
|
appId: exports_external.string().describe("target App, app_…"),
|
|
20193
|
-
deploymentId: exports_external.string().describe("
|
|
20199
|
+
deploymentId: exports_external.string().describe("prepared candidate, dep_…"),
|
|
20194
20200
|
expectedActiveDeploymentId: exports_external.string().nullable().describe("active deployment from app_get, or null before first activation")
|
|
20195
20201
|
},
|
|
20196
20202
|
surfaces: ["mcp", "cli"],
|
package/package.json
CHANGED