@lambdacurry/arbor 0.21.62 → 0.21.63
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 +35 -3
- 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.63",
|
|
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",
|
|
@@ -17628,6 +17628,21 @@ var computerRunReceipt2 = exports_external.looseObject({
|
|
|
17628
17628
|
]),
|
|
17629
17629
|
mutationRetrySafety: exports_external.enum(["not-needed", "safe", "unsafe", "unknown"]),
|
|
17630
17630
|
reasonCode: exports_external.string(),
|
|
17631
|
+
lastProviderObservation: exports_external.looseObject({
|
|
17632
|
+
providerStatus: exports_external.string(),
|
|
17633
|
+
observedAt: timestamp,
|
|
17634
|
+
nextCursor: exports_external.string().optional(),
|
|
17635
|
+
executing: exports_external.boolean().optional(),
|
|
17636
|
+
liveness: exports_external.looseObject({
|
|
17637
|
+
state: exports_external.enum(["active", "inactive", "unknown"]),
|
|
17638
|
+
reasonCode: exports_external.string()
|
|
17639
|
+
}).optional(),
|
|
17640
|
+
activity: exports_external.looseObject({
|
|
17641
|
+
state: exports_external.enum(["output", "compute", "quiet", "terminal", "unknown"]),
|
|
17642
|
+
outputAdvanced: exports_external.boolean(),
|
|
17643
|
+
reasonCode: exports_external.string()
|
|
17644
|
+
}).optional()
|
|
17645
|
+
}).optional(),
|
|
17631
17646
|
startedAt: exports_external.string(),
|
|
17632
17647
|
endedAt: exports_external.string().nullable()
|
|
17633
17648
|
})),
|
|
@@ -18677,6 +18692,22 @@ var MCP_OUTPUT_SCHEMAS = {
|
|
|
18677
18692
|
reasonCode: exports_external.string(),
|
|
18678
18693
|
mutationRetrySafety: exports_external.enum(["safe", "unsafe", "unknown"]),
|
|
18679
18694
|
nextAction: exports_external.enum(["computer_exec", "computer_process_read", "computer_run_receipt"])
|
|
18695
|
+
}).optional(),
|
|
18696
|
+
lastProviderObservation: exports_external.looseObject({
|
|
18697
|
+
providerStatus: exports_external.string(),
|
|
18698
|
+
observedAt: timestamp,
|
|
18699
|
+
ageMs: exports_external.number().int().min(0),
|
|
18700
|
+
nextCursor: exports_external.string().optional(),
|
|
18701
|
+
executing: exports_external.boolean().optional(),
|
|
18702
|
+
liveness: exports_external.looseObject({
|
|
18703
|
+
state: exports_external.enum(["active", "inactive", "unknown"]),
|
|
18704
|
+
reasonCode: exports_external.string()
|
|
18705
|
+
}).optional(),
|
|
18706
|
+
activity: exports_external.looseObject({
|
|
18707
|
+
state: exports_external.enum(["output", "compute", "quiet", "terminal", "unknown"]),
|
|
18708
|
+
outputAdvanced: exports_external.boolean(),
|
|
18709
|
+
reasonCode: exports_external.string()
|
|
18710
|
+
}).optional()
|
|
18680
18711
|
}).optional()
|
|
18681
18712
|
}),
|
|
18682
18713
|
computer_process_terminate: exports_external.looseObject({
|
|
@@ -19012,7 +19043,8 @@ var OUTPUT_SHAPERS = {
|
|
|
19012
19043
|
["executing", result.executing],
|
|
19013
19044
|
["liveness", result.liveness],
|
|
19014
19045
|
["activity", result.activity],
|
|
19015
|
-
["recovery", result.recovery]
|
|
19046
|
+
["recovery", result.recovery],
|
|
19047
|
+
["lastProviderObservation", result.lastProviderObservation]
|
|
19016
19048
|
]),
|
|
19017
19049
|
computer_process_terminate: (result) => defined([
|
|
19018
19050
|
["status", result.status],
|
|
@@ -20072,7 +20104,7 @@ var ACTION_DEFINITIONS = [
|
|
|
20072
20104
|
{
|
|
20073
20105
|
name: "computer_process_read",
|
|
20074
20106
|
title: "Read a background process",
|
|
20075
|
-
description: "Read one
|
|
20107
|
+
description: "Read one provider-owned process from computer_exec, including a recovered Run operation, using nextCursor for incremental output. Successful Run reads durably retain the latest provider observation; a later timeout stays unknown and unsafe while returning it with age, and Arbor settles the durable operation only from terminal or exact provider-absence proof.",
|
|
20076
20108
|
inputSchema: {
|
|
20077
20109
|
computerSessionId: exports_external.string().optional().describe("the computerSessionId returned by computer_open, cms_…; required unless runId is supplied"),
|
|
20078
20110
|
runId: exports_external.string().optional().describe("the Run that owns this process, if it was started inside a Run"),
|
package/package.json
CHANGED