@lambdacurry/arbor 0.4.20 → 0.4.21
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 -3
- package/package.json +1 -1
package/dist/arbor.js
CHANGED
|
@@ -16325,7 +16325,7 @@ var ACTIONS = [
|
|
|
16325
16325
|
title: "Read a thread",
|
|
16326
16326
|
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.",
|
|
16327
16327
|
inputSchema: {
|
|
16328
|
-
|
|
16328
|
+
threadId: exports_external.string().describe("the thread id, e.g. thr_…"),
|
|
16329
16329
|
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"),
|
|
16330
16330
|
contribCursor: exports_external.string().optional().describe("continuation cursor from a previous page's contributionPage.nextCursor")
|
|
16331
16331
|
},
|
|
@@ -16526,7 +16526,7 @@ var ACTIONS = [
|
|
|
16526
16526
|
title: "Read a space",
|
|
16527
16527
|
description: "Read one space by id — its details, the topics under it, and the full MEMBER roster: who's here, their role, their capabilities, and each member's space charter (how they operate in THIS space, AD-152) plus their identity charter. Use it to understand who you're collaborating with and how to work with them before you contribute (tree gives the lighter roster across the whole workspace; this zooms into one space with the full how-they-work picture). Space-access gated, like every read.",
|
|
16528
16528
|
inputSchema: {
|
|
16529
|
-
|
|
16529
|
+
spaceId: exports_external.string().min(1).describe("the space id")
|
|
16530
16530
|
},
|
|
16531
16531
|
surfaces: ["mcp", "cli"],
|
|
16532
16532
|
run: forward("space.get")
|
|
@@ -16536,7 +16536,7 @@ var ACTIONS = [
|
|
|
16536
16536
|
title: "Read a topic",
|
|
16537
16537
|
description: "Read one topic by id — its details + the threads under it. Use it to zoom into a single topic (tree gives the whole workspace). Space-access gated, like every read.",
|
|
16538
16538
|
inputSchema: {
|
|
16539
|
-
|
|
16539
|
+
topicId: exports_external.string().min(1).describe("the topic id")
|
|
16540
16540
|
},
|
|
16541
16541
|
surfaces: ["mcp", "cli"],
|
|
16542
16542
|
run: forward("topic.get")
|
package/package.json
CHANGED