@lambdacurry/arbor 0.21.61 → 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 +39 -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],
|
|
@@ -19980,6 +20012,10 @@ var ACTION_DEFINITIONS = [
|
|
|
19980
20012
|
mode: exports_external.enum(["read", "write"]).describe("write for mutable work; read for shared inspection"),
|
|
19981
20013
|
execution: exports_external.enum(["shared", "isolated"]).optional().describe("write Run placement; defaults to isolated. Use shared only for intentional live collaboration on the Thread Computer"),
|
|
19982
20014
|
label: exports_external.string().max(120).optional().describe("short factual label for this unit of work"),
|
|
20015
|
+
requestedRevisions: exports_external.array(exports_external.object({
|
|
20016
|
+
repository: exports_external.string().describe("configured GitHub repository as canonical owner/name"),
|
|
20017
|
+
head: exports_external.string().regex(/^[0-9a-fA-F]{40}(?:[0-9a-fA-F]{24})?$/).describe("exact 40- or 64-hex Git object id required before caller work")
|
|
20018
|
+
})).max(32).optional().describe("optional exact repository revisions the isolated workspace must prove before caller work"),
|
|
19983
20019
|
idempotencyKey: exports_external.string().min(1).max(200).describe("stable key for this ONE logical Run-start request; reuse it unchanged for retries")
|
|
19984
20020
|
},
|
|
19985
20021
|
surfaces: ["computer-mcp", "computer-cli"],
|
|
@@ -20068,7 +20104,7 @@ var ACTION_DEFINITIONS = [
|
|
|
20068
20104
|
{
|
|
20069
20105
|
name: "computer_process_read",
|
|
20070
20106
|
title: "Read a background process",
|
|
20071
|
-
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.",
|
|
20072
20108
|
inputSchema: {
|
|
20073
20109
|
computerSessionId: exports_external.string().optional().describe("the computerSessionId returned by computer_open, cms_…; required unless runId is supplied"),
|
|
20074
20110
|
runId: exports_external.string().optional().describe("the Run that owns this process, if it was started inside a Run"),
|
package/package.json
CHANGED