@lambdacurry/arbor 0.4.9 → 0.4.10
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 +4 -2
- package/package.json +2 -2
package/dist/arbor.js
CHANGED
|
@@ -16442,9 +16442,11 @@ var ACTIONS = [
|
|
|
16442
16442
|
{
|
|
16443
16443
|
name: "thread_get",
|
|
16444
16444
|
title: "Read a thread",
|
|
16445
|
-
description: "Read the full state of the thread you're working in — objective, every contribution + stamp, and its OPEN REQUESTS. Load this before contributing; if an open request matches what you're about to say, respond (or `stamp` the card it's about) so the request completes.",
|
|
16445
|
+
description: "Read the full state of the thread you're working in — objective, every contribution + stamp, and its OPEN REQUESTS. Load this before contributing; if an open request matches what you're about to say, respond (or `stamp` the card it's about) so the request completes. On a LONG thread, page the contributions with contribLimit/contribCursor (follow contributionPage.nextCursor) to bound how much you load at once.",
|
|
16446
16446
|
inputSchema: {
|
|
16447
|
-
id: exports_external.string().describe("the thread id, e.g. thr_…")
|
|
16447
|
+
id: exports_external.string().describe("the thread id, e.g. thr_…"),
|
|
16448
|
+
contribLimit: exports_external.number().int().positive().optional().describe("max contributions to return (AD-151 keyset paging) — omit to load the whole thread; set on a long thread to bound context"),
|
|
16449
|
+
contribCursor: exports_external.string().optional().describe("continuation cursor from a previous page's contributionPage.nextCursor")
|
|
16448
16450
|
},
|
|
16449
16451
|
surfaces: ["mcp", "cli"],
|
|
16450
16452
|
run: forward("thread.get")
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lambdacurry/arbor",
|
|
3
|
-
"version": "0.4.
|
|
4
|
-
"description": "The Arbor CLI
|
|
3
|
+
"version": "0.4.10",
|
|
4
|
+
"description": "The Arbor CLI — a shared workspace for people and agents. The human + headless-agent write path over Arbor's guarded operation surface.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
7
7
|
"arbor": "./dist/arbor.js"
|