@lambdacurry/arbor 0.20.8 → 0.20.10

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 +3 -28
  2. package/package.json +1 -1
package/dist/arbor.js CHANGED
@@ -1681,7 +1681,6 @@ var computerRuns = sqliteTable("computer_runs", {
1681
1681
  mode: text("mode").$type().notNull(),
1682
1682
  execution: text("isolation").$type().notNull(),
1683
1683
  workspaceDir: text("workspace_dir").notNull(),
1684
- _legacyWorkspaceRef: text("workspace_ref"),
1685
1684
  baseSnapshotId: text("base_snapshot_id"),
1686
1685
  gitStart: text("git_start", { mode: "json" }).$type(),
1687
1686
  status: text("status").$type().notNull().default("active"),
@@ -18266,7 +18265,7 @@ var ACTION_DEFINITIONS = [
18266
18265
  {
18267
18266
  name: "computer_exec",
18268
18267
  title: "Run a command",
18269
- description: "Run one bounded logical operation in an opened Thread computer. Omitting cwd uses the environment's defaultCwd; pass cwd explicitly to override it. Pass runId to route the command according to that Run's execution placement; without runId the command executes in the parent Computer. Strict Bash semantics are ON by default. For tests, builds, installs, or any command likely to run long, prefer background=true so the call returns a processId immediately; follow it with computer_process_read using the returned cursor for small incremental tails. For a connected human, Arbor supplies ambient GitHub authorization and Git identity ephemerally without writing credentials into the workspace. Background processes stay in the environment where they were started.",
18268
+ description: "Run one bounded logical operation in an opened Thread computer. Omitting cwd uses the environment's defaultCwd; pass cwd explicitly to override it. Pass runId to route the command according to that Run's execution placement; without runId the command executes in the parent Computer. Strict Bash semantics are ON by default. For tests, builds, installs, or any command likely to run long, prefer background=true so the call returns a processId immediately; follow it with computer_process_read using the returned cursor for small incremental tails. For a labeled run-scoped verification check, pass activityKind=verification so the terminal exit becomes a distilled verification outcome. For a connected human, Arbor supplies ambient GitHub authorization and Git identity ephemerally without writing credentials into the workspace. Background processes stay in the environment where they were started.",
18270
18269
  inputSchema: {
18271
18270
  computerSessionId: exports_external.string().optional().describe("the computerSessionId returned by computer_open, cms_…; required unless runId is supplied"),
18272
18271
  command: exports_external.string().min(1).describe("the shell command to run"),
@@ -18275,6 +18274,7 @@ var ACTION_DEFINITIONS = [
18275
18274
  timeout: exports_external.number().int().min(1000).max(1800000).optional().describe("timeout in milliseconds, from 1,000 through 1,800,000"),
18276
18275
  background: exports_external.boolean().optional().describe("start a container process and return its pid"),
18277
18276
  activityLabel: exports_external.string().min(1).max(COMPUTER_RUN_ACTIVITY_LABEL_MAX).optional().describe("short human-readable label for run-scoped background work; Arbor records this label instead of the raw command or output"),
18277
+ activityKind: exports_external.literal("verification").optional().describe("mark a labeled run-scoped background command as a verification check; its provider-observed terminal result is recorded as verification.finished"),
18278
18278
  strict: exports_external.boolean().optional().describe("fail on the first unhandled command or pipeline failure; defaults to true, set false only for intentional best-effort execution")
18279
18279
  },
18280
18280
  surfaces: ["computer-mcp", "computer-cli"],
@@ -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, legacy Run placement, and failed reprovisions. Organization owner/admin only. This is an operational read model, not a deletion recommendation.",
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lambdacurry/arbor",
3
- "version": "0.20.8",
3
+ "version": "0.20.10",
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",