@lambdacurry/arbor 0.22.34 → 0.22.35
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 +7 -6
- 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.35",
|
|
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",
|
|
@@ -9264,10 +9264,10 @@ var MCP_OUTPUT_SCHEMAS = {
|
|
|
9264
9264
|
computer_process_read: looseObject({
|
|
9265
9265
|
processId: string2(),
|
|
9266
9266
|
status: string2(),
|
|
9267
|
-
outputRetention: object({ state:
|
|
9267
|
+
outputRetention: object({ state: _enum(["preserved", "expired"]), expiresAt: timestamp }).optional(),
|
|
9268
9268
|
timedOut: boolean2().optional(),
|
|
9269
9269
|
endedAt: timestamp.nullable().optional(),
|
|
9270
|
-
durationMs: number2().int().min(0).nullable().optional(),
|
|
9270
|
+
durationMs: number2().int().min(0).nullable().optional().describe("process elapsed runtime, final at terminal; it is not read or RPC latency"),
|
|
9271
9271
|
stdout: string2().optional(),
|
|
9272
9272
|
stderr: string2().optional(),
|
|
9273
9273
|
truncated: boolean2().optional(),
|
|
@@ -10151,7 +10151,7 @@ Arbor's MCP is the collaboration and durable-knowledge surface. Configure, autho
|
|
|
10151
10151
|
|
|
10152
10152
|
Run \`arbor help\` (or read the MCP tool list) for the exact command/flags — those stay generated from the live action surface, so they're always current.`;
|
|
10153
10153
|
var ARBOR_SKILL_MARKDOWN = renderArborSkill(ORIENTATION);
|
|
10154
|
-
var COMPUTER_ORIENTATION = `Long Computer work returns a processId handle — do not hold one tool call for a full test or build. \`computer_exec\` runs a command; if the result is still running, observe it with \`computer_process_read\`; read a truncated continuation only when you need more output. Finish and suspend preserve unread terminal output internally, with original process IDs/cursors recoverable for 30 days. Do not chain \`pnpm test && pnpm build\` in one exec; split steps or pass \`background:true\`. An explicit waitForTerminalMs uses one server wait and canonical output page;
|
|
10154
|
+
var COMPUTER_ORIENTATION = `Long Computer work returns a processId handle — do not hold one tool call for a full test or build. \`computer_exec\` runs a command; if the result is still running, observe it with \`computer_process_read\`; read a truncated continuation only when you need more output. Finish and suspend preserve unread terminal output internally, with original process IDs/cursors recoverable for 30 days. Do not chain \`pnpm test && pnpm build\` in one exec; split steps or pass \`background:true\`. An explicit waitForTerminalMs uses one server wait and canonical output page; includeOutput=false on process_read returns status/liveness/recovery without output delivery or cursor advancement. Otherwise the CLI polls only while the process is silent unless \`--no-wait\`. It never concatenates continuation pages into one agent context.
|
|
10155
10155
|
|
|
10156
10156
|
Arbor Computer is the complete software execution platform attached to Arbor's durable collaboration graph. It configures project environments, executes and verifies work, packages and releases Apps, and preserves reviewable evidence; it does not schedule agents or replace Arbor collaboration.
|
|
10157
10157
|
|
|
@@ -10995,14 +10995,15 @@ var ACTION_DEFINITIONS = [
|
|
|
10995
10995
|
{
|
|
10996
10996
|
name: "computer_process_read",
|
|
10997
10997
|
title: "Read a background process",
|
|
10998
|
-
description: "Read output with nextCursor
|
|
10998
|
+
description: "Read output with nextCursor; includeOutput=false returns status/liveness/recovery without output or cursor delivery; durationMs is process runtime, not RPC latency; wait expiry does not stop work; transport failure stays unknown/unsafe; only terminal or exact absence proof settles the durable operation; preserved output stays readable for 30 days without provider wake.",
|
|
10999
10999
|
inputSchema: {
|
|
11000
11000
|
computerSessionId: string2().optional().describe("legacy alternative to runId: a computerSessionId on that Computer, cms_…; required unless runId is supplied"),
|
|
11001
11001
|
runId: string2().optional().describe("the Run that owns this process, if it was started inside a Run"),
|
|
11002
11002
|
processId: string2().min(1).describe("the processId returned by background exec, or matching computer_run_receipt.operations[].operationId for recovered foreground Run work, proc_…"),
|
|
11003
11003
|
cursor: string2().optional().describe("continue after nextCursor from the prior result; omit to read from the beginning"),
|
|
11004
11004
|
maxBytes: number2().int().min(1024).max(65536).optional().describe("maximum combined output bytes to return; default 4,096, opt up only when needed"),
|
|
11005
|
-
waitForTerminalMs: number2().int().min(0).max(45000).optional().describe("use one native terminal-observation window up to this many milliseconds, then return one canonical output page; 0 is immediate, surviving descendants may remain running, and omission preserves the current read behavior")
|
|
11005
|
+
waitForTerminalMs: number2().int().min(0).max(45000).optional().describe("use one native terminal-observation window up to this many milliseconds, then return one canonical output page when includeOutput is true; 0 is immediate, surviving descendants may remain running, and omission preserves the current read behavior"),
|
|
11006
|
+
includeOutput: boolean2().optional().describe("include stdout, stderr, and paging cursors; set false to inspect status, liveness, and recovery without delivering output or marking it delivered")
|
|
11006
11007
|
},
|
|
11007
11008
|
surfaces: ["computer-mcp", "computer-cli"],
|
|
11008
11009
|
toolset: "loop",
|
package/package.json
CHANGED