@lambdacurry/arbor 0.20.9 → 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.
- package/dist/arbor.js +2 -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"],
|
package/package.json
CHANGED