@lambdacurry/arbor 0.20.24 → 0.20.25
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 +5 -5
- package/package.json +1 -1
package/dist/arbor.js
CHANGED
|
@@ -20121,7 +20121,7 @@ var ACTION_DEFINITIONS = [
|
|
|
20121
20121
|
{
|
|
20122
20122
|
name: "app_deploy",
|
|
20123
20123
|
title: "Prepare an App deployment",
|
|
20124
|
-
description: "Create an immutable candidate
|
|
20124
|
+
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
20125
|
inputSchema: {
|
|
20126
20126
|
appId: exports_external.string().describe("target App, app_…"),
|
|
20127
20127
|
bundleId: exports_external.string().describe("verified immutable AppBundle, bnd_…"),
|
|
@@ -20146,7 +20146,7 @@ var ACTION_DEFINITIONS = [
|
|
|
20146
20146
|
{
|
|
20147
20147
|
name: "app_deployment_get",
|
|
20148
20148
|
title: "Inspect an App deployment",
|
|
20149
|
-
description: "READ ONLY: Inspect one deployment's
|
|
20149
|
+
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
20150
|
inputSchema: {
|
|
20151
20151
|
appId: exports_external.string().describe("owning App, app_…"),
|
|
20152
20152
|
deploymentId: exports_external.string().describe("deployment, dep_…")
|
|
@@ -20186,11 +20186,11 @@ var ACTION_DEFINITIONS = [
|
|
|
20186
20186
|
},
|
|
20187
20187
|
{
|
|
20188
20188
|
name: "app_activate",
|
|
20189
|
-
title: "Activate a
|
|
20190
|
-
description: "Activate a
|
|
20189
|
+
title: "Activate a prepared deployment",
|
|
20190
|
+
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
20191
|
inputSchema: {
|
|
20192
20192
|
appId: exports_external.string().describe("target App, app_…"),
|
|
20193
|
-
deploymentId: exports_external.string().describe("
|
|
20193
|
+
deploymentId: exports_external.string().describe("prepared candidate, dep_…"),
|
|
20194
20194
|
expectedActiveDeploymentId: exports_external.string().nullable().describe("active deployment from app_get, or null before first activation")
|
|
20195
20195
|
},
|
|
20196
20196
|
surfaces: ["mcp", "cli"],
|
package/package.json
CHANGED