@lambdacurry/arbor 0.21.20 → 0.21.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 +17 -6
- package/package.json +1 -1
package/dist/arbor.js
CHANGED
|
@@ -17843,6 +17843,8 @@ var MCP_OUTPUT_SCHEMAS = {
|
|
|
17843
17843
|
scope: exports_external.literal("global"),
|
|
17844
17844
|
forum: exports_external.looseObject({ title: exports_external.string(), purpose: nullableString }),
|
|
17845
17845
|
topics: exports_external.array(jsonObject),
|
|
17846
|
+
total: exports_external.number().int().min(0).optional(),
|
|
17847
|
+
nextCursor: exports_external.string().optional(),
|
|
17846
17848
|
privacy: exports_external.string()
|
|
17847
17849
|
}),
|
|
17848
17850
|
feedback_recall: exports_external.looseObject({
|
|
@@ -17856,7 +17858,10 @@ var MCP_OUTPUT_SCHEMAS = {
|
|
|
17856
17858
|
canonicalThreadId: id,
|
|
17857
17859
|
thread: jsonObject,
|
|
17858
17860
|
topic: jsonObject,
|
|
17859
|
-
contributions: exports_external.array(jsonObject),
|
|
17861
|
+
contributions: exports_external.array(jsonObject).optional(),
|
|
17862
|
+
recentContributions: exports_external.array(jsonObject).optional(),
|
|
17863
|
+
contributionPage: exports_external.looseObject({ total: exports_external.number().int().min(0), nextCursor: nullableString }).optional(),
|
|
17864
|
+
contributionCount: exports_external.number().int().min(0).optional(),
|
|
17860
17865
|
mergedFrom: exports_external.array(jsonObject),
|
|
17861
17866
|
redirects: exports_external.array(jsonObject),
|
|
17862
17867
|
privacy: exports_external.string()
|
|
@@ -19196,10 +19201,12 @@ var ACTION_DEFINITIONS = [
|
|
|
19196
19201
|
{
|
|
19197
19202
|
name: "feedback_tree",
|
|
19198
19203
|
title: "Browse the shared Arbor Feedback forum",
|
|
19199
|
-
description: "Browse the global Arbor Feedback forum by
|
|
19204
|
+
description: "Browse the global Arbor Feedback forum; Topics page by default, and depth=threads requires topicId to page one shared Thread roster (all=true is the only unscoped complete enumeration). New reports appear as their own shared Threads as submitted; private receipt metadata and reviewer diagnostics are never returned.",
|
|
19200
19205
|
inputSchema: {
|
|
19201
|
-
depth: exports_external.enum(["topics", "threads"]).optional().describe("topics (default) or threads
|
|
19202
|
-
|
|
19206
|
+
depth: exports_external.enum(["topics", "threads"]).optional().describe("topics (default) or threads for one explicitly selected Feedback Topic"),
|
|
19207
|
+
topicId: exports_external.string().optional().describe("depth=threads only: shared Feedback Topic whose Thread roster to page"),
|
|
19208
|
+
includeArchived: exports_external.boolean().optional().describe("include archived Topics/Threads for historical moderation or lookup (default false)"),
|
|
19209
|
+
...PAGINATION_INPUT
|
|
19203
19210
|
},
|
|
19204
19211
|
surfaces: ["mcp", "cli"],
|
|
19205
19212
|
toolset: "feedback",
|
|
@@ -19221,10 +19228,14 @@ var ACTION_DEFINITIONS = [
|
|
|
19221
19228
|
{
|
|
19222
19229
|
name: "feedback_thread_get",
|
|
19223
19230
|
title: "Read a shared Arbor Feedback thread",
|
|
19224
|
-
description: "Read one shared Arbor Feedback Thread, following
|
|
19231
|
+
description: "Read one shared Arbor Feedback Thread, following merge redirects while preserving shared provenance; MCP/CLI/API default to compact recent context, while view=full pages sanitized Contributions and all=true returns complete history. Private receipt ids, reporter organization metadata, diagnostics, and private associations are never projected.",
|
|
19225
19232
|
inputSchema: {
|
|
19226
|
-
threadId: exports_external.string().describe("the shared Feedback Thread id, thr_…")
|
|
19233
|
+
threadId: exports_external.string().describe("the shared Feedback Thread id, thr_…"),
|
|
19234
|
+
view: exports_external.enum(["full", "compact"]).optional().describe("MCP/CLI/API default compact; full pages the shared Contribution transcript"),
|
|
19235
|
+
recentLimit: exports_external.number().int().min(1).max(20).optional().describe("compact reads only: latest shared Contributions to include (default 6, max 20)"),
|
|
19236
|
+
...PAGINATION_INPUT
|
|
19227
19237
|
},
|
|
19238
|
+
externalReadDefaults: { view: EXTERNAL_DEFAULT_THREAD_VIEW },
|
|
19228
19239
|
surfaces: ["mcp", "cli"],
|
|
19229
19240
|
toolset: "feedback",
|
|
19230
19241
|
run: forward("feedback.thread_get")
|
package/package.json
CHANGED