@lambdacurry/arbor 0.20.7 → 0.20.8
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 +2 -2
- package/package.json +1 -1
package/dist/arbor.js
CHANGED
|
@@ -18202,13 +18202,13 @@ var ACTION_DEFINITIONS = [
|
|
|
18202
18202
|
{
|
|
18203
18203
|
name: "computer_reprovision",
|
|
18204
18204
|
title: "Replace a Thread computer",
|
|
18205
|
-
description: "
|
|
18205
|
+
description: "DESTRUCTIVE RECOVERY: explicitly replace an incompatible active Computer generation from the Thread's effective recipe. This one recovery action is also available on the normal Arbor MCP so a structurally stale Computer can be replaced before Computer MCP attachment is possible. The old generation remains authoritative unless the successor restores supported state and passes health. Same-provider worker-shell→container migration is supported; container→worker-shell and cross-provider migration fail explicitly. Reuse one idempotencyKey only for the same replacement request.",
|
|
18206
18206
|
inputSchema: {
|
|
18207
18207
|
threadId: exports_external.string().describe("the Thread whose active Computer generation is replaced, thr_…"),
|
|
18208
18208
|
idempotencyKey: exports_external.string().min(1).max(200).describe("stable key for this ONE replacement request; reuse it unchanged for retries"),
|
|
18209
18209
|
reason: exports_external.string().min(1).max(500).describe("concise auditable reason for replacing the active generation")
|
|
18210
18210
|
},
|
|
18211
|
-
surfaces: ["computer-mcp", "computer-cli"],
|
|
18211
|
+
surfaces: ["mcp", "computer-mcp", "computer-cli"],
|
|
18212
18212
|
toolset: "loop",
|
|
18213
18213
|
run: forward("computer_runtime.reprovision")
|
|
18214
18214
|
},
|
package/package.json
CHANGED