@lambdacurry/arbor 0.20.0 → 0.20.2

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 +22 -4
  2. 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,19 @@ 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
+ },
18468
18486
  {
18469
18487
  name: "publish_topic_computer",
18470
18488
  title: "Publish a Topic computer base",
@@ -19069,11 +19087,11 @@ var ACTION_DEFINITIONS = [
19069
19087
  },
19070
19088
  {
19071
19089
  name: "service_register",
19072
- title: "Register a checkpoint service",
19073
- description: "Register a persistent service identity for Currybox checkpoint sweeps and mint its API key (shown ONCE). Human owner/admin CLI setup only. The credential is restricted to computer.get + computer.checkpoint and to the Spaces listed here; store it as the Currybox control plane's Arbor credential.",
19090
+ title: "Register a Computer lifecycle service",
19091
+ 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.",
19074
19092
  inputSchema: {
19075
- displayName: exports_external.string().min(1).describe("the service display name, e.g. Currybox checkpoint sweep"),
19076
- spaceIds: exports_external.array(exports_external.string().min(1)).min(1).describe("Spaces whose Thread computers the service may checkpoint")
19093
+ displayName: exports_external.string().min(1).describe("the service display name, e.g. Currybox lifecycle service"),
19094
+ spaceIds: exports_external.array(exports_external.string().min(1)).min(1).describe("Spaces whose Thread computers the service may maintain")
19077
19095
  },
19078
19096
  surfaces: ["cli"],
19079
19097
  toolset: "admin",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lambdacurry/arbor",
3
- "version": "0.20.0",
3
+ "version": "0.20.2",
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",