@lambdacurry/arbor 0.22.20 → 0.22.21
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 +5 -1
- 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.21",
|
|
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",
|
|
@@ -9153,6 +9153,7 @@ var MCP_OUTPUT_SCHEMAS = {
|
|
|
9153
9153
|
exitCode: number2().optional(),
|
|
9154
9154
|
processId: string2().optional(),
|
|
9155
9155
|
status: string2().optional(),
|
|
9156
|
+
timedOut: boolean2().optional(),
|
|
9156
9157
|
truncated: boolean2().optional().describe("true when returned stdout/stderr is partial and more output remains"),
|
|
9157
9158
|
nextCursor: string2().optional().describe("opaque cursor for continuing partial output with computer_process_read"),
|
|
9158
9159
|
cwd: string2().optional(),
|
|
@@ -9162,6 +9163,7 @@ var MCP_OUTPUT_SCHEMAS = {
|
|
|
9162
9163
|
computer_process_read: looseObject({
|
|
9163
9164
|
processId: string2(),
|
|
9164
9165
|
status: string2(),
|
|
9166
|
+
timedOut: boolean2().optional(),
|
|
9165
9167
|
endedAt: timestamp.nullable().optional(),
|
|
9166
9168
|
durationMs: number2().int().min(0).nullable().optional(),
|
|
9167
9169
|
stdout: string2().optional(),
|
|
@@ -9551,6 +9553,7 @@ var OUTPUT_SHAPERS = {
|
|
|
9551
9553
|
["exitCode", omitNull(result.exitCode)],
|
|
9552
9554
|
["processId", omitNull(result.processId)],
|
|
9553
9555
|
["status", omitNull(result.status)],
|
|
9556
|
+
["timedOut", omitNull(result.timedOut)],
|
|
9554
9557
|
["truncated", omitNull(result.truncated)],
|
|
9555
9558
|
["nextCursor", omitNull(result.nextCursor)],
|
|
9556
9559
|
["execution", omitProviderNativeExecution(result.execution)],
|
|
@@ -9560,6 +9563,7 @@ var OUTPUT_SHAPERS = {
|
|
|
9560
9563
|
computer_process_read: (result) => defined([
|
|
9561
9564
|
["processId", result.processId],
|
|
9562
9565
|
["status", result.status],
|
|
9566
|
+
["timedOut", omitNull(result.timedOut)],
|
|
9563
9567
|
["stdout", result.stdout],
|
|
9564
9568
|
["stderr", result.stderr],
|
|
9565
9569
|
["truncated", result.truncated],
|
package/package.json
CHANGED