@lambdacurry/arbor 0.21.12 → 0.21.13
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 +10 -4
- package/package.json +1 -1
package/dist/arbor.js
CHANGED
|
@@ -18020,6 +18020,8 @@ var MCP_OUTPUT_SCHEMAS = {
|
|
|
18020
18020
|
space: space3,
|
|
18021
18021
|
topics: exports_external.array(topic2).optional(),
|
|
18022
18022
|
members: exports_external.array(member).optional(),
|
|
18023
|
+
total: exports_external.number().int().min(0),
|
|
18024
|
+
nextCursor: exports_external.string().optional(),
|
|
18023
18025
|
computerConfig: resolvedComputerConfig.nullable().optional()
|
|
18024
18026
|
}),
|
|
18025
18027
|
topic_get: exports_external.looseObject({
|
|
@@ -18027,6 +18029,8 @@ var MCP_OUTPUT_SCHEMAS = {
|
|
|
18027
18029
|
space: space3,
|
|
18028
18030
|
threads: exports_external.array(thread3).optional(),
|
|
18029
18031
|
promotedArtifacts: exports_external.array(artifact4).optional(),
|
|
18032
|
+
total: exports_external.number().int().min(0),
|
|
18033
|
+
nextCursor: exports_external.string().optional(),
|
|
18030
18034
|
computerConfig: resolvedComputerConfig.nullable().optional()
|
|
18031
18035
|
}),
|
|
18032
18036
|
goal: exports_external.looseObject({
|
|
@@ -20536,9 +20540,10 @@ var ACTION_DEFINITIONS = [
|
|
|
20536
20540
|
{
|
|
20537
20541
|
name: "space_get",
|
|
20538
20542
|
title: "Read a space",
|
|
20539
|
-
description: "Read a Space's durable context
|
|
20543
|
+
description: "Read a Space's durable context—purpose, guidance, contribution lanes, Topics—and a paged member roster with roles, capabilities, and charters (default 50; `total` is the full roster size). Continue with `cursor`, or use `all=true` / `--all` only when you need every member; it cannot modify membership or guidance.",
|
|
20540
20544
|
inputSchema: {
|
|
20541
|
-
spaceId: exports_external.string().min(1).describe("the space id")
|
|
20545
|
+
spaceId: exports_external.string().min(1).describe("the space id"),
|
|
20546
|
+
...PAGINATION_INPUT
|
|
20542
20547
|
},
|
|
20543
20548
|
surfaces: ["mcp", "cli"],
|
|
20544
20549
|
toolset: "loop",
|
|
@@ -20547,9 +20552,10 @@ var ACTION_DEFINITIONS = [
|
|
|
20547
20552
|
{
|
|
20548
20553
|
name: "topic_get",
|
|
20549
20554
|
title: "Read a topic",
|
|
20550
|
-
description: "Read a Topic's
|
|
20555
|
+
description: "Read a Topic's durable context, guidance, open requests, promoted artifacts, and a paged Thread roster (default 50; `total` is the full roster size). Continue with `cursor`, or use `all=true` / `--all` only for intentional complete enumeration; for a concrete question in a large Topic, prefer Topic-scoped `recall`.",
|
|
20551
20556
|
inputSchema: {
|
|
20552
|
-
topicId: exports_external.string().min(1).describe("the topic id")
|
|
20557
|
+
topicId: exports_external.string().min(1).describe("the topic id"),
|
|
20558
|
+
...PAGINATION_INPUT
|
|
20553
20559
|
},
|
|
20554
20560
|
surfaces: ["mcp", "cli"],
|
|
20555
20561
|
toolset: "loop",
|
package/package.json
CHANGED