@lambdacurry/arbor 0.22.24 → 0.22.25
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 +18 -2
- package/package.json +1 -1
package/dist/arbor.js
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
// package.json
|
|
3
3
|
var package_default = {
|
|
4
4
|
name: "@lambdacurry/arbor",
|
|
5
|
-
version: "0.22.
|
|
5
|
+
version: "0.22.25",
|
|
6
6
|
description: "The Arbor CLI — a shared workspace for people and agents. The human + headless-agent write path over Arbor's guarded operation surface.",
|
|
7
7
|
keywords: [
|
|
8
8
|
"agents",
|
|
@@ -6636,6 +6636,7 @@ var computerRuns = sqliteTable("computer_runs", {
|
|
|
6636
6636
|
runtimeState: text("runtime_state").$type().notNull().default("shared"),
|
|
6637
6637
|
runtimeUpdatedAt: ts("runtime_updated_at"),
|
|
6638
6638
|
gitStart: text("git_start", { mode: "json" }).$type(),
|
|
6639
|
+
finishRequest: text("finish_request", { mode: "json" }).$type(),
|
|
6639
6640
|
status: text("status").$type().notNull().default("active"),
|
|
6640
6641
|
label: text("label"),
|
|
6641
6642
|
reason: text("reason"),
|
|
@@ -7995,6 +7996,21 @@ var computerRunReceipt2 = looseObject({
|
|
|
7995
7996
|
gitStart: computerRunGitStart.nullable().optional(),
|
|
7996
7997
|
durability: computerRunDurability,
|
|
7997
7998
|
finishAssessment: computerRunFinishAssessment.nullable(),
|
|
7999
|
+
finishRequest: looseObject({
|
|
8000
|
+
intentId: id,
|
|
8001
|
+
outcome: _enum(["finished", "failed", "cancelled"]),
|
|
8002
|
+
reason: string2().nullable(),
|
|
8003
|
+
discard: boolean2(),
|
|
8004
|
+
expectedCurrentSnapshotId: id,
|
|
8005
|
+
requestedAt: timestamp,
|
|
8006
|
+
updatedAt: timestamp,
|
|
8007
|
+
state: _enum(["pending", "rejected", "completed"]),
|
|
8008
|
+
phase: _enum(["quiescence", "git", "checkpoint", "release", "rejected"]),
|
|
8009
|
+
reasonCode: string2().nullable(),
|
|
8010
|
+
finishAssessment: computerRunFinishAssessment.nullable(),
|
|
8011
|
+
providerGeneration: number2().int().nonnegative().nullable(),
|
|
8012
|
+
releasedSnapshotId: id.nullable()
|
|
8013
|
+
}).nullable(),
|
|
7998
8014
|
status: _enum(["active", "finished", "failed", "cancelled"]),
|
|
7999
8015
|
outcome: _enum(["finished", "failed", "cancelled"]).nullable(),
|
|
8000
8016
|
reason: string2().nullable(),
|
|
@@ -10815,7 +10831,7 @@ var ACTION_DEFINITIONS = [
|
|
|
10815
10831
|
{
|
|
10816
10832
|
name: "computer_run_receipt",
|
|
10817
10833
|
title: "Read a run receipt",
|
|
10818
|
-
description: "Inspect one Run's durable receipt during or after execution, including its Run-owned operation/activity state and a compact providerLifecycle journal (generation, last phase, typed reason) separate from command/process activity. Use this instead of parent computer_status; it returns compact history, not transcripts, and does not rewrite terminal reasonCode.",
|
|
10834
|
+
description: "Inspect one Run's durable receipt during or after execution, including its finishRequest, Run-owned operation/activity state, and a compact providerLifecycle journal (generation, last phase, typed reason) separate from command/process activity. Use this instead of parent computer_status; it returns compact history, not transcripts, and does not rewrite terminal reasonCode.",
|
|
10819
10835
|
inputSchema: {
|
|
10820
10836
|
runId: string2().describe("the run to read, run_… (from computer_run_start or computer_runs)")
|
|
10821
10837
|
},
|
package/package.json
CHANGED