@lambdacurry/arbor 0.20.7 → 0.20.9
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 +3 -28
- 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
|
},
|
|
@@ -18505,7 +18505,7 @@ var ACTION_DEFINITIONS = [
|
|
|
18505
18505
|
{
|
|
18506
18506
|
name: "computer_inventory",
|
|
18507
18507
|
title: "Inventory organization Computers",
|
|
18508
|
-
description: "READ ONLY: Inventory materialized Thread Computers in your organization, optionally scoped to one Topic. Reports active generation, recipe compatibility, counts for generations/sessions/snapshots/Runs, and factual flags for stale recipes, superseded generations, active Runs
|
|
18508
|
+
description: "READ ONLY: Inventory materialized Thread Computers in your organization, optionally scoped to one Topic. Reports active generation, recipe compatibility, counts for generations/sessions/snapshots/Runs, and factual flags for stale recipes, superseded generations, active Runs and failed reprovisions. Organization owner/admin only. This is an operational read model, not a deletion recommendation.",
|
|
18509
18509
|
inputSchema: {
|
|
18510
18510
|
topicId: exports_external.string().optional().describe("optional Topic to scope the inventory"),
|
|
18511
18511
|
limit: exports_external.number().int().min(1).max(50).optional().describe("rows to return (default 25)"),
|
|
@@ -18515,31 +18515,6 @@ var ACTION_DEFINITIONS = [
|
|
|
18515
18515
|
toolset: "admin",
|
|
18516
18516
|
run: forward("computer.inventory")
|
|
18517
18517
|
},
|
|
18518
|
-
{
|
|
18519
|
-
name: "computer_reset_plan",
|
|
18520
|
-
title: "Plan an early-dogfood Computer reset",
|
|
18521
|
-
description: "TEMPORARY CLI-ONLY: Dry-run the bounded early-dogfood Computer reset for one Thread. Human organization owner/admin only. Returns exact counts, refusal reasons, provider refs to release separately, and a planToken. It never deletes anything.",
|
|
18522
|
-
inputSchema: {
|
|
18523
|
-
threadId: exports_external.string().describe("the Thread whose Computer runtime state is being reviewed"),
|
|
18524
|
-
reason: exports_external.string().min(1).max(500).describe("why this early dogfood state is disposable")
|
|
18525
|
-
},
|
|
18526
|
-
surfaces: ["cli"],
|
|
18527
|
-
toolset: "admin",
|
|
18528
|
-
run: forward("computer.reset_plan")
|
|
18529
|
-
},
|
|
18530
|
-
{
|
|
18531
|
-
name: "computer_reset_apply",
|
|
18532
|
-
title: "Apply an early-dogfood Computer reset",
|
|
18533
|
-
description: "TEMPORARY CLI-ONLY: Apply exactly a previously reviewed computer_reset_plan. Human organization owner/admin only. The operation refuses if Computer state changed, active work exists, post-cutoff state exists, or durable outputs cite the Computer history. Provider cleanup remains separate.",
|
|
18534
|
-
inputSchema: {
|
|
18535
|
-
threadId: exports_external.string().describe("the Thread whose reviewed Computer runtime state will be reset"),
|
|
18536
|
-
reason: exports_external.string().min(1).max(500).describe("the same reason used for the reviewed plan"),
|
|
18537
|
-
planToken: exports_external.string().regex(/^[a-f0-9]{64}$/).describe("the exact planToken returned by computer_reset_plan")
|
|
18538
|
-
},
|
|
18539
|
-
surfaces: ["cli"],
|
|
18540
|
-
toolset: "admin",
|
|
18541
|
-
run: forward("computer.reset_apply")
|
|
18542
|
-
},
|
|
18543
18518
|
{
|
|
18544
18519
|
name: "publish_topic_computer",
|
|
18545
18520
|
title: "Publish a Topic computer base",
|
package/package.json
CHANGED