@lambdacurry/arbor 0.22.17 → 0.22.18
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 +3 -5
- 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.18",
|
|
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",
|
|
@@ -12074,7 +12074,7 @@ var ACTION_DEFINITIONS = [
|
|
|
12074
12074
|
{
|
|
12075
12075
|
name: "tldraw_checkpoint",
|
|
12076
12076
|
title: "Checkpoint a tldraw board",
|
|
12077
|
-
description: "
|
|
12077
|
+
description: "Declare the current verified tldraw room as a meaningful immutable Artifact milestone. If the same full document is already persisted this may be a no-op; repeating the same idempotencyKey returns the existing checkpoint receipt.",
|
|
12078
12078
|
inputSchema: {
|
|
12079
12079
|
artifactId: string2().describe("the tldraw Artifact, art_…"),
|
|
12080
12080
|
idempotencyKey: string2().min(1).max(200).describe("stable key for this checkpoint"),
|
|
@@ -12142,9 +12142,7 @@ var ACTION_DEFINITIONS = [
|
|
|
12142
12142
|
artifactId: string2().describe("the tldraw Artifact, art_…"),
|
|
12143
12143
|
code: string2().min(1).max(1e5).optional().describe("advanced script source; mutually exclusive with operations"),
|
|
12144
12144
|
operations: TLDRAW_EXEC_OPERATIONS_SCHEMA.optional(),
|
|
12145
|
-
idempotencyKey: string2().min(1).max(200).describe("stable
|
|
12146
|
-
expectedDocumentClock: number2().int().min(0).optional().describe("opt-in coarse CAS over the whole durable tldraw document; omit for ordinary multiplayer edits"),
|
|
12147
|
-
boundedSettleMs: number2().int().min(400).max(3000).optional().describe("maximum settle time")
|
|
12145
|
+
idempotencyKey: string2().min(1).max(200).describe("stable label for this intended edit; reuse only when retrying the same logical execution")
|
|
12148
12146
|
},
|
|
12149
12147
|
surfaces: ["mcp", "cli"],
|
|
12150
12148
|
toolset: "artifacts",
|
package/package.json
CHANGED