@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.
Files changed (2) hide show
  1. package/dist/arbor.js +5 -5
  2. 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 from an AppBundle and run the provider health check without changing the stable URL. A failed candidate is recorded with redacted diagnostics and leaves the active release live; call app_activate only after this returns a verified 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 candidate, active, failed, or superseded state, source AppBundle, provider receipt, redacted provider health result, and redacted configuration readiness against that bundle's declared runtime requirements. It cannot modify App state, deployment state, access, or durable SQLite.",
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 verified deployment",
20190
- description: "Activate a verified App deployment at its stable URL after health-checking the candidate. Pass the active deployment id just read (or null for the first release); retries resume the same pending activation and conflicting control changes are rejected.",
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("verified candidate, dep_…"),
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lambdacurry/arbor",
3
- "version": "0.20.24",
3
+ "version": "0.20.25",
4
4
  "description": "The Arbor CLI — a shared workspace for people and agents. The human + headless-agent write path over Arbor's guarded operation surface.",
5
5
  "keywords": [
6
6
  "agents",