@lambdacurry/arbor 0.20.1 → 0.20.3
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 +44 -1
- package/package.json +1 -1
package/dist/arbor.js
CHANGED
|
@@ -17105,6 +17105,10 @@ var MCP_OUTPUT_SCHEMAS = {
|
|
|
17105
17105
|
lineage: exports_external.array(jsonObject),
|
|
17106
17106
|
reprovisions: exports_external.array(jsonObject)
|
|
17107
17107
|
}),
|
|
17108
|
+
computer_inventory: exports_external.looseObject({
|
|
17109
|
+
computers: exports_external.array(jsonObject),
|
|
17110
|
+
nextCursor: exports_external.string().nullable()
|
|
17111
|
+
}),
|
|
17108
17112
|
github_repositories: exports_external.looseObject({
|
|
17109
17113
|
repositories: exports_external.array(jsonObject),
|
|
17110
17114
|
nextCursor: exports_external.string().nullable().optional(),
|
|
@@ -17715,6 +17719,7 @@ var MCP_TOOL_ANNOTATIONS = {
|
|
|
17715
17719
|
set_thread_computer: additive,
|
|
17716
17720
|
attach_computer: additive,
|
|
17717
17721
|
get_computer: readOnly,
|
|
17722
|
+
computer_inventory: readOnly,
|
|
17718
17723
|
publish_topic_computer: additive,
|
|
17719
17724
|
checkpoint_computer: additive,
|
|
17720
17725
|
transition_thread: additive,
|
|
@@ -18465,6 +18470,44 @@ var ACTION_DEFINITIONS = [
|
|
|
18465
18470
|
toolset: "loop",
|
|
18466
18471
|
run: forward("computer.get")
|
|
18467
18472
|
},
|
|
18473
|
+
{
|
|
18474
|
+
name: "computer_inventory",
|
|
18475
|
+
title: "Inventory organization Computers",
|
|
18476
|
+
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, legacy Run placement, and failed reprovisions. Organization owner/admin only. This is an operational read model, not a deletion recommendation.",
|
|
18477
|
+
inputSchema: {
|
|
18478
|
+
topicId: exports_external.string().optional().describe("optional Topic to scope the inventory"),
|
|
18479
|
+
limit: exports_external.number().int().min(1).max(50).optional().describe("rows to return (default 25)"),
|
|
18480
|
+
cursor: exports_external.string().optional().describe("active Computer id returned as nextCursor by the previous page")
|
|
18481
|
+
},
|
|
18482
|
+
surfaces: ["mcp", "cli"],
|
|
18483
|
+
toolset: "admin",
|
|
18484
|
+
run: forward("computer.inventory")
|
|
18485
|
+
},
|
|
18486
|
+
{
|
|
18487
|
+
name: "computer_reset_plan",
|
|
18488
|
+
title: "Plan an early-dogfood Computer reset",
|
|
18489
|
+
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.",
|
|
18490
|
+
inputSchema: {
|
|
18491
|
+
threadId: exports_external.string().describe("the Thread whose Computer runtime state is being reviewed"),
|
|
18492
|
+
reason: exports_external.string().min(1).max(500).describe("why this early dogfood state is disposable")
|
|
18493
|
+
},
|
|
18494
|
+
surfaces: ["cli"],
|
|
18495
|
+
toolset: "admin",
|
|
18496
|
+
run: forward("computer.reset_plan")
|
|
18497
|
+
},
|
|
18498
|
+
{
|
|
18499
|
+
name: "computer_reset_apply",
|
|
18500
|
+
title: "Apply an early-dogfood Computer reset",
|
|
18501
|
+
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.",
|
|
18502
|
+
inputSchema: {
|
|
18503
|
+
threadId: exports_external.string().describe("the Thread whose reviewed Computer runtime state will be reset"),
|
|
18504
|
+
reason: exports_external.string().min(1).max(500).describe("the same reason used for the reviewed plan"),
|
|
18505
|
+
planToken: exports_external.string().regex(/^[a-f0-9]{64}$/).describe("the exact planToken returned by computer_reset_plan")
|
|
18506
|
+
},
|
|
18507
|
+
surfaces: ["cli"],
|
|
18508
|
+
toolset: "admin",
|
|
18509
|
+
run: forward("computer.reset_apply")
|
|
18510
|
+
},
|
|
18468
18511
|
{
|
|
18469
18512
|
name: "publish_topic_computer",
|
|
18470
18513
|
title: "Publish a Topic computer base",
|
|
@@ -19070,7 +19113,7 @@ var ACTION_DEFINITIONS = [
|
|
|
19070
19113
|
{
|
|
19071
19114
|
name: "service_register",
|
|
19072
19115
|
title: "Register a Computer lifecycle service",
|
|
19073
|
-
description: "Register a persistent service identity for Currybox Computer lifecycle maintenance and mint its API key (shown ONCE). Human owner/admin CLI setup only. The credential is restricted to computer.get + computer.checkpoint + computer.reconcile_runs and to the Spaces listed here; store it as the Currybox control plane's Arbor credential.",
|
|
19116
|
+
description: "Register a persistent service identity for Currybox Computer lifecycle maintenance and mint its API key (shown ONCE). Human owner/admin CLI setup only. The credential is restricted to computer.get + computer.lifecycle_runs + computer.checkpoint + computer.reconcile_runs and to the Spaces listed here; store it as the Currybox control plane's Arbor credential.",
|
|
19074
19117
|
inputSchema: {
|
|
19075
19118
|
displayName: exports_external.string().min(1).describe("the service display name, e.g. Currybox lifecycle service"),
|
|
19076
19119
|
spaceIds: exports_external.array(exports_external.string().min(1)).min(1).describe("Spaces whose Thread computers the service may maintain")
|
package/package.json
CHANGED