@lambdacurry/arbor 0.20.2 → 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.
Files changed (2) hide show
  1. package/dist/arbor.js +26 -1
  2. package/package.json +1 -1
package/dist/arbor.js CHANGED
@@ -18483,6 +18483,31 @@ var ACTION_DEFINITIONS = [
18483
18483
  toolset: "admin",
18484
18484
  run: forward("computer.inventory")
18485
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
+ },
18486
18511
  {
18487
18512
  name: "publish_topic_computer",
18488
18513
  title: "Publish a Topic computer base",
@@ -19088,7 +19113,7 @@ var ACTION_DEFINITIONS = [
19088
19113
  {
19089
19114
  name: "service_register",
19090
19115
  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.",
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.",
19092
19117
  inputSchema: {
19093
19118
  displayName: exports_external.string().min(1).describe("the service display name, e.g. Currybox lifecycle service"),
19094
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lambdacurry/arbor",
3
- "version": "0.20.2",
3
+ "version": "0.20.3",
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",