@lambdacurry/arbor 0.22.33 → 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 +16 -7
- 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(),
|
|
@@ -9981,6 +9981,13 @@ var update = object({
|
|
|
9981
9981
|
var shapeIds = array(shapeId).min(1).max(TLDRAW_EXEC_MAX_OPERATIONS);
|
|
9982
9982
|
var diagramKey = string2().min(1).max(80).describe("caller-meaningful node key; returned as the alias for its generated tldraw shape id");
|
|
9983
9983
|
var diagramLabel = string2().min(1).max(160);
|
|
9984
|
+
var stack = object({
|
|
9985
|
+
op: literal("stack"),
|
|
9986
|
+
ids: shapeIds.min(2).describe("native shapes in the exact stack order; first id is the anchor"),
|
|
9987
|
+
axis: _enum(["horizontal", "vertical"]),
|
|
9988
|
+
gap: finite.min(0).describe("required edge-to-edge gap between adjacent shapes"),
|
|
9989
|
+
alignment: _enum(["start", "center", "end"]).optional().describe("optional cross-axis alignment relative to the first shape")
|
|
9990
|
+
}).strict();
|
|
9984
9991
|
var connect = object({
|
|
9985
9992
|
op: literal("connect"),
|
|
9986
9993
|
sourceId: shapeId.describe("existing native shape to bind the arrow start to"),
|
|
@@ -10018,6 +10025,7 @@ var TLDRAW_EXEC_OPERATION_SCHEMA = discriminatedUnion("op", [
|
|
|
10018
10025
|
ids: shapeIds.min(2),
|
|
10019
10026
|
groupId: shapeId.optional()
|
|
10020
10027
|
}).strict(),
|
|
10028
|
+
stack,
|
|
10021
10029
|
connect,
|
|
10022
10030
|
diagram
|
|
10023
10031
|
]);
|
|
@@ -10143,7 +10151,7 @@ Arbor's MCP is the collaboration and durable-knowledge surface. Configure, autho
|
|
|
10143
10151
|
|
|
10144
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.`;
|
|
10145
10153
|
var ARBOR_SKILL_MARKDOWN = renderArborSkill(ORIENTATION);
|
|
10146
|
-
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.
|
|
10147
10155
|
|
|
10148
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.
|
|
10149
10157
|
|
|
@@ -10987,14 +10995,15 @@ var ACTION_DEFINITIONS = [
|
|
|
10987
10995
|
{
|
|
10988
10996
|
name: "computer_process_read",
|
|
10989
10997
|
title: "Read a background process",
|
|
10990
|
-
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.",
|
|
10991
10999
|
inputSchema: {
|
|
10992
11000
|
computerSessionId: string2().optional().describe("legacy alternative to runId: a computerSessionId on that Computer, cms_…; required unless runId is supplied"),
|
|
10993
11001
|
runId: string2().optional().describe("the Run that owns this process, if it was started inside a Run"),
|
|
10994
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_…"),
|
|
10995
11003
|
cursor: string2().optional().describe("continue after nextCursor from the prior result; omit to read from the beginning"),
|
|
10996
11004
|
maxBytes: number2().int().min(1024).max(65536).optional().describe("maximum combined output bytes to return; default 4,096, opt up only when needed"),
|
|
10997
|
-
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")
|
|
10998
11007
|
},
|
|
10999
11008
|
surfaces: ["computer-mcp", "computer-cli"],
|
|
11000
11009
|
toolset: "loop",
|
|
@@ -12359,7 +12368,7 @@ var ACTION_DEFINITIONS = [
|
|
|
12359
12368
|
{
|
|
12360
12369
|
name: "tldraw_exec",
|
|
12361
12370
|
title: "Run a one-shot tldraw program",
|
|
12362
|
-
description: `Modify the current live tldraw board with preferred declarative operations or bounded JavaScript, including graph-scoped diagram layout and safe native bound connect
|
|
12371
|
+
description: `Modify the current live tldraw board with preferred declarative operations or bounded JavaScript, including graph-scoped diagram layout, ordered exact-gap stack composition, and safe native bound connect without caller-supplied connector geometry, then return a durable execution receipt; use IDs from a fresh observe, reacquire this current schema after compaction, and never replay an unknown result. First use: read the tldraw guide at ${AGENT_GUIDE_URLS.tldraw}.`,
|
|
12363
12372
|
inputSchema: {
|
|
12364
12373
|
artifactId: string2().describe("the tldraw Artifact, art_…"),
|
|
12365
12374
|
code: string2().min(1).max(1e5).optional().describe("advanced script source; mutually exclusive with operations"),
|
package/package.json
CHANGED