@lambdacurry/arbor 0.21.19 → 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 +45 -14
- 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()
|
|
@@ -18298,12 +18303,25 @@ var MCP_OUTPUT_SCHEMAS = {
|
|
|
18298
18303
|
defaultCwd: exports_external.string(),
|
|
18299
18304
|
capabilities: computerOpenCapabilities,
|
|
18300
18305
|
agentBrief: computerOpenAgentBrief,
|
|
18301
|
-
reconciliation: exports_external.
|
|
18302
|
-
|
|
18303
|
-
|
|
18304
|
-
|
|
18305
|
-
|
|
18306
|
-
|
|
18306
|
+
reconciliation: exports_external.union([
|
|
18307
|
+
exports_external.object({
|
|
18308
|
+
action: exports_external.literal("automatic_reprovision"),
|
|
18309
|
+
reason: exports_external.literal("container_profile_revision"),
|
|
18310
|
+
fromContainerProfileRevision: exports_external.number().int().nullable(),
|
|
18311
|
+
toContainerProfileRevision: exports_external.number().int().nullable()
|
|
18312
|
+
}),
|
|
18313
|
+
exports_external.object({
|
|
18314
|
+
action: exports_external.literal("automatic_reprovision"),
|
|
18315
|
+
reason: exports_external.literal("repository_additions"),
|
|
18316
|
+
reprovisionId: id,
|
|
18317
|
+
previousComputerId: id,
|
|
18318
|
+
successorComputerId: id,
|
|
18319
|
+
restoredSnapshotId: id.nullable(),
|
|
18320
|
+
checkpointOutcome: exports_external.string(),
|
|
18321
|
+
restorationOutcome: exports_external.string(),
|
|
18322
|
+
addedRepositories: exports_external.array(exports_external.string())
|
|
18323
|
+
})
|
|
18324
|
+
]).optional()
|
|
18307
18325
|
}),
|
|
18308
18326
|
computer_run_start: exports_external.object({
|
|
18309
18327
|
runId: id,
|
|
@@ -18653,7 +18671,14 @@ var OUTPUT_SHAPERS = {
|
|
|
18653
18671
|
"action",
|
|
18654
18672
|
"reason",
|
|
18655
18673
|
"fromContainerProfileRevision",
|
|
18656
|
-
"toContainerProfileRevision"
|
|
18674
|
+
"toContainerProfileRevision",
|
|
18675
|
+
"reprovisionId",
|
|
18676
|
+
"previousComputerId",
|
|
18677
|
+
"successorComputerId",
|
|
18678
|
+
"restoredSnapshotId",
|
|
18679
|
+
"checkpointOutcome",
|
|
18680
|
+
"restorationOutcome",
|
|
18681
|
+
"addedRepositories"
|
|
18657
18682
|
]);
|
|
18658
18683
|
return defined([
|
|
18659
18684
|
["computerSessionId", result.computerSessionId],
|
|
@@ -19176,10 +19201,12 @@ var ACTION_DEFINITIONS = [
|
|
|
19176
19201
|
{
|
|
19177
19202
|
name: "feedback_tree",
|
|
19178
19203
|
title: "Browse the shared Arbor Feedback forum",
|
|
19179
|
-
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.",
|
|
19180
19205
|
inputSchema: {
|
|
19181
|
-
depth: exports_external.enum(["topics", "threads"]).optional().describe("topics (default) or threads
|
|
19182
|
-
|
|
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
|
|
19183
19210
|
},
|
|
19184
19211
|
surfaces: ["mcp", "cli"],
|
|
19185
19212
|
toolset: "feedback",
|
|
@@ -19201,10 +19228,14 @@ var ACTION_DEFINITIONS = [
|
|
|
19201
19228
|
{
|
|
19202
19229
|
name: "feedback_thread_get",
|
|
19203
19230
|
title: "Read a shared Arbor Feedback thread",
|
|
19204
|
-
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.",
|
|
19205
19232
|
inputSchema: {
|
|
19206
|
-
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
|
|
19207
19237
|
},
|
|
19238
|
+
externalReadDefaults: { view: EXTERNAL_DEFAULT_THREAD_VIEW },
|
|
19208
19239
|
surfaces: ["mcp", "cli"],
|
|
19209
19240
|
toolset: "feedback",
|
|
19210
19241
|
run: forward("feedback.thread_get")
|
|
@@ -19613,7 +19644,7 @@ var ACTION_DEFINITIONS = [
|
|
|
19613
19644
|
{
|
|
19614
19645
|
name: "computer_open",
|
|
19615
19646
|
title: "Open a Thread computer",
|
|
19616
|
-
description: "Open
|
|
19647
|
+
description: "Open a Thread project environment and return its session/workspace, verified root repository instruction pointers, Agent Brief, capabilities, Runs, and reconciliation receipt. Forward profile-revision or additive authorized repository drift auto-reconciles through a successor; removal, setup, backend/provider/profile changes, or ambiguous drift refuse with computer_reprovision guidance.",
|
|
19617
19648
|
inputSchema: {
|
|
19618
19649
|
threadId: exports_external.string().describe("the Arbor Thread whose stable computer to open, thr_…"),
|
|
19619
19650
|
vcpus: exports_external.number().int().min(1).max(4).optional().describe("optional container vCPU request"),
|
package/package.json
CHANGED