@lambdacurry/arbor 0.22.2 → 0.22.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.
- package/dist/arbor.js +10 -4
- 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.3",
|
|
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",
|
|
@@ -8768,14 +8768,19 @@ var MCP_OUTPUT_SCHEMAS = {
|
|
|
8768
8768
|
runtime: computerRunRuntime,
|
|
8769
8769
|
replayed: boolean2(),
|
|
8770
8770
|
snapshotId: id.nullable(),
|
|
8771
|
-
parentCheckpoint: string2().optional()
|
|
8771
|
+
parentCheckpoint: string2().optional(),
|
|
8772
|
+
parentAsleep: boolean2().optional()
|
|
8772
8773
|
}),
|
|
8773
8774
|
computer_run_finish: looseObject({
|
|
8774
8775
|
status: string2(),
|
|
8775
8776
|
replayed: boolean2(),
|
|
8776
8777
|
durability: computerRunDurability,
|
|
8777
8778
|
finishAssessment: computerRunFinishAssessment.nullable(),
|
|
8778
|
-
parent: object({
|
|
8779
|
+
parent: object({
|
|
8780
|
+
checkpoint: string2().nullable(),
|
|
8781
|
+
stopped: boolean2(),
|
|
8782
|
+
asleep: boolean2().optional()
|
|
8783
|
+
}).optional()
|
|
8779
8784
|
}),
|
|
8780
8785
|
computer_repo_work_status: looseObject({
|
|
8781
8786
|
runId: id,
|
|
@@ -9229,7 +9234,8 @@ var OUTPUT_SHAPERS = {
|
|
|
9229
9234
|
["runtime", selected(run.runtime, ["state", "currentSnapshotId", "updatedAt"])],
|
|
9230
9235
|
["replayed", result.replayed],
|
|
9231
9236
|
["snapshotId", result.snapshotId],
|
|
9232
|
-
["parentCheckpoint", result.parentCheckpoint]
|
|
9237
|
+
["parentCheckpoint", result.parentCheckpoint],
|
|
9238
|
+
["parentAsleep", result.parentAsleep]
|
|
9233
9239
|
]);
|
|
9234
9240
|
},
|
|
9235
9241
|
computer_run_finish: (result) => {
|
package/package.json
CHANGED