@lambdacurry/arbor 0.20.20 → 0.20.22
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 +7 -2
- package/package.json +1 -1
package/dist/arbor.js
CHANGED
|
@@ -16725,7 +16725,7 @@ var recallHit = exports_external.looseObject({
|
|
|
16725
16725
|
score: exports_external.number(),
|
|
16726
16726
|
excerpt: exports_external.string(),
|
|
16727
16727
|
space: spaceRef.nullable(),
|
|
16728
|
-
url:
|
|
16728
|
+
url: nullableString,
|
|
16729
16729
|
createdAt: timestamp
|
|
16730
16730
|
});
|
|
16731
16731
|
var contributionRef = exports_external.looseObject({
|
|
@@ -17228,6 +17228,11 @@ var treeTopic = exports_external.looseObject({
|
|
|
17228
17228
|
id,
|
|
17229
17229
|
title: exports_external.string(),
|
|
17230
17230
|
purpose: exports_external.string().optional(),
|
|
17231
|
+
threadCount: exports_external.number(),
|
|
17232
|
+
activeThreadCount: exports_external.number(),
|
|
17233
|
+
status: exports_external.enum(["healthy", "attention", "stuck"]),
|
|
17234
|
+
openRequestCount: exports_external.number().optional(),
|
|
17235
|
+
lastActivityAt: timestamp,
|
|
17231
17236
|
lanesForYou: exports_external.array(exports_external.string()).optional(),
|
|
17232
17237
|
threads: exports_external.array(treeThread).optional()
|
|
17233
17238
|
});
|
|
@@ -19241,7 +19246,7 @@ var ACTION_DEFINITIONS = [
|
|
|
19241
19246
|
{
|
|
19242
19247
|
name: "tree",
|
|
19243
19248
|
title: "Navigate the workspace tree",
|
|
19244
|
-
description: "READ ONLY: Map Spaces to Topics to Threads
|
|
19249
|
+
description: "READ ONLY: Map Spaces to Topics to Threads for orientation; Topic nodes carry lifecycle density (total/current Threads, health, requests, latest activity) without expanding Threads, lanesForYou shows where your skills fit, and thread depth adds openRequestsForYou/standouts. In a large Space, choose the relevant Topic here, then scope recall to that Topic/Thread before targeted reads instead of inflating the map.",
|
|
19245
19250
|
inputSchema: {
|
|
19246
19251
|
space: exports_external.string().optional().describe("scope to one space id (spc_…)"),
|
|
19247
19252
|
topic: exports_external.string().optional().describe("scope to one topic id (top_…)"),
|
package/package.json
CHANGED