@lambdacurry/arbor 0.21.43 → 0.21.44
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 +17 -4
- package/package.json +1 -1
package/dist/arbor.js
CHANGED
|
@@ -16,7 +16,7 @@ var __export = (target, all) => {
|
|
|
16
16
|
// package.json
|
|
17
17
|
var package_default = {
|
|
18
18
|
name: "@lambdacurry/arbor",
|
|
19
|
-
version: "0.21.
|
|
19
|
+
version: "0.21.44",
|
|
20
20
|
description: "The Arbor CLI — a shared workspace for people and agents. The human + headless-agent write path over Arbor's guarded operation surface.",
|
|
21
21
|
keywords: [
|
|
22
22
|
"agents",
|
|
@@ -18081,7 +18081,20 @@ var MCP_OUTPUT_SCHEMAS = {
|
|
|
18081
18081
|
generations: exports_external.array(jsonObject),
|
|
18082
18082
|
sessions: exports_external.array(jsonObject),
|
|
18083
18083
|
lineage: exports_external.array(jsonObject),
|
|
18084
|
-
reprovisions: exports_external.array(jsonObject)
|
|
18084
|
+
reprovisions: exports_external.array(jsonObject),
|
|
18085
|
+
recoverySafety: exports_external.looseObject({
|
|
18086
|
+
state: exports_external.enum([
|
|
18087
|
+
"safe-to-restore",
|
|
18088
|
+
"possible-uncheckpointed-work",
|
|
18089
|
+
"unknown-mutation-outcome",
|
|
18090
|
+
"unknown-baseline"
|
|
18091
|
+
]),
|
|
18092
|
+
computerId: id,
|
|
18093
|
+
durableSnapshotId: id.nullable(),
|
|
18094
|
+
started: exports_external.number().int().min(0),
|
|
18095
|
+
acknowledged: exports_external.number().int().min(0),
|
|
18096
|
+
durable: exports_external.number().int().min(0).nullable()
|
|
18097
|
+
}).nullable().optional()
|
|
18085
18098
|
}),
|
|
18086
18099
|
computer_inventory: exports_external.looseObject({
|
|
18087
18100
|
computers: exports_external.array(jsonObject),
|
|
@@ -19941,7 +19954,7 @@ var ACTION_DEFINITIONS = [
|
|
|
19941
19954
|
{
|
|
19942
19955
|
name: "computer_status",
|
|
19943
19956
|
title: "Inspect a computer",
|
|
19944
|
-
description: "Inspect the live PARENT Thread Computer's capabilities,
|
|
19957
|
+
description: "Inspect the live PARENT Thread Computer's capabilities, live can-I-exec readiness, processes, and profile. Transient session unavailability drops command capabilities and may retry computer_open once; a terminal unknown mutation is a non-retryable stop — this does not report isolated Run command state, so use computer_run_receipt for Run state or get_computer for restore-safety.",
|
|
19945
19958
|
inputSchema: {
|
|
19946
19959
|
computerSessionId: exports_external.string().describe("the computerSessionId returned by computer_open, cms_…")
|
|
19947
19960
|
},
|
|
@@ -20139,7 +20152,7 @@ var ACTION_DEFINITIONS = [
|
|
|
20139
20152
|
{
|
|
20140
20153
|
name: "get_computer",
|
|
20141
20154
|
title: "Read a Thread computer",
|
|
20142
|
-
description: "Inspect a Thread's durable Computer recipe/materialization state, compatibility, snapshot lineage, recent receipts, Runs, and reprovision outcomes; setup content and credentials stay redacted.
|
|
20155
|
+
description: "Inspect a Thread's durable Computer recipe/materialization state, compatibility, snapshot lineage, recoverySafety, recent receipts, Runs, and reprovision outcomes; setup content and credentials stay redacted. readiness here is restore-safety (decision-required means Arbor will not silently restore); use computer_status for whether the opened session can exec now.",
|
|
20143
20156
|
inputSchema: {
|
|
20144
20157
|
threadId: exports_external.string().describe("the Thread, thr_…"),
|
|
20145
20158
|
lineageLimit: exports_external.number().int().min(1).max(100).optional().describe("recent receipts/lineage rows (default 20)")
|
package/package.json
CHANGED