@lambdacurry/arbor 0.20.8 → 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 +1 -26
- package/package.json +1 -1
package/dist/arbor.js
CHANGED
|
@@ -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