@lambdacurry/arbor 0.22.32 → 0.22.33
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.33",
|
|
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",
|
|
@@ -10987,7 +10987,7 @@ var ACTION_DEFINITIONS = [
|
|
|
10987
10987
|
{
|
|
10988
10988
|
name: "computer_process_read",
|
|
10989
10989
|
title: "Read a background process",
|
|
10990
|
-
description: "Read
|
|
10990
|
+
description: "Read output with nextCursor, including repeated cursors for 30 days after preservation without provider wake. durationMs is process elapsed runtime (final at terminal), not RPC latency; waitForTerminalMs adds one bounded observation/page; expiry may leave work running; transport failure stays unknown/unsafe; only terminal or exact absence proof settles the durable operation.",
|
|
10991
10991
|
inputSchema: {
|
|
10992
10992
|
computerSessionId: string2().optional().describe("legacy alternative to runId: a computerSessionId on that Computer, cms_…; required unless runId is supplied"),
|
|
10993
10993
|
runId: string2().optional().describe("the Run that owns this process, if it was started inside a Run"),
|
|
@@ -11354,7 +11354,7 @@ var ACTION_DEFINITIONS = [
|
|
|
11354
11354
|
{
|
|
11355
11355
|
name: "promote_attachment",
|
|
11356
11356
|
title: "Promote a file attachment to an artifact",
|
|
11357
|
-
description: "Turn a file uploaded to a thread into a first-class
|
|
11357
|
+
description: "Turn a file uploaded to a thread into a separate first-class file Artifact from a source Contribution — the blob becomes the Artifact's content, owned by that contribution's author (not necessarily you). Use the Attachment's durable downloadUrl to reference an exported report within an existing baseline Artifact instead of promoting it into that artifactId; the Attachment must share the source Contribution's Thread, and re-promoting the same file is idempotent.",
|
|
11358
11358
|
inputSchema: {
|
|
11359
11359
|
attachmentId: string2().describe("the uploaded attachment, att_…"),
|
|
11360
11360
|
sourceContributionId: string2().describe("the contribution it's produced by, con_… (must share the attachment's thread)")
|
|
@@ -12174,7 +12174,7 @@ var ACTION_DEFINITIONS = [
|
|
|
12174
12174
|
{
|
|
12175
12175
|
name: "artifact",
|
|
12176
12176
|
title: "Create or edit an Artifact",
|
|
12177
|
-
description: "Create or edit a durable versioned Artifact, bind its executable Thread Live Preview, set a Computer-file asleep/share snapshot, or promote a Thread attachment
|
|
12177
|
+
description: "Create or edit a durable versioned Artifact, bind its executable Thread Live Preview, set a Computer-file asleep/share snapshot, or promote a Thread attachment into a separate file Artifact from a source Contribution. To reference an exported report within an existing baseline Artifact, use the Attachment's durable downloadUrl instead of promoting it into that artifactId. For a computer:// .tldr snapshot mint: computer_export the exact locator path and same-Thread PNG, then use set_snapshot. Board save and TLP do not mint snapshots. set_snapshot does not wake Computer or change the locator; read artifact_get before changing it, while lifecycle/removal stay in artifact_transition and artifact_delete.",
|
|
12178
12178
|
inputSchema: {
|
|
12179
12179
|
verb: _enum(["create", "edit", "set_live_preview", "set_snapshot", "promote_attachment"]).describe("which artifact move"),
|
|
12180
12180
|
title: string2().optional().describe("create: the artifact's title"),
|
|
@@ -12194,7 +12194,8 @@ var ACTION_DEFINITIONS = [
|
|
|
12194
12194
|
note: string2().optional().describe("edit: one-line summary of what changed"),
|
|
12195
12195
|
sourceAttachmentId: string2().optional().describe("set_snapshot: computer_export of the exact computer:// locator path; MIME application/vnd.tldraw+json, computerPath stamped and matching defaultCwd + locator"),
|
|
12196
12196
|
previewAttachmentId: string2().optional().describe("set_snapshot: same-Thread computer_export image/png Attachment, used as the asleep face preview"),
|
|
12197
|
-
attachmentId: string2().optional().describe("promote_attachment: the upload, att_…")
|
|
12197
|
+
attachmentId: string2().optional().describe("promote_attachment: the upload, att_…"),
|
|
12198
|
+
sourceContributionId: string2().optional().describe("promote_attachment: REQUIRED source Contribution, con_… (must share the Attachment's Thread)")
|
|
12198
12199
|
},
|
|
12199
12200
|
surfaces: ["mcp"],
|
|
12200
12201
|
toolset: "artifacts",
|
|
@@ -12941,7 +12942,7 @@ function retentionAction(action) {
|
|
|
12941
12942
|
if (action.name === "artifact") {
|
|
12942
12943
|
return {
|
|
12943
12944
|
...action,
|
|
12944
|
-
description: "Create
|
|
12945
|
+
description: "Create/edit a durable versioned Artifact with bounded full|checkpoint retention or manage its Live Preview/snapshot/attachment surface; promote_attachment creates a separate file Artifact from a source Contribution, while exported reports in an existing baseline Artifact use the Attachment's durable downloadUrl instead of promotion into that artifactId. Content edits return artifactVersionId; byte-identical edits reuse current version, while policy changes/checkpoints preserve content version.",
|
|
12945
12946
|
inputSchema: {
|
|
12946
12947
|
...action.inputSchema,
|
|
12947
12948
|
historyPolicy: historyPolicySchema,
|
package/package.json
CHANGED