@lambdacurry/arbor 0.8.9 → 0.8.10
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 +13 -0
- package/package.json +1 -1
package/dist/arbor.js
CHANGED
|
@@ -1678,6 +1678,8 @@ var PAIRING_TTL_MS = 15 * 60 * 1000;
|
|
|
1678
1678
|
var REQUEST_TTL_MS = 14 * 24 * 60 * 60 * 1000;
|
|
1679
1679
|
// ../core/src/queries/activity.ts
|
|
1680
1680
|
var targetAuthor = alias(profiles, "target_author");
|
|
1681
|
+
// ../core/src/queries/lane-candidates.ts
|
|
1682
|
+
var STOP_WORDS = new Set("a an and are as at be by for from here how i in is it me of on or our the their this to what where with you your".split(" "));
|
|
1681
1683
|
// ../core/src/blob/in-memory.ts
|
|
1682
1684
|
class InMemoryBlobStore {
|
|
1683
1685
|
store = new Map;
|
|
@@ -16552,6 +16554,17 @@ var ACTIONS = [
|
|
|
16552
16554
|
toolset: "loop",
|
|
16553
16555
|
run: forward("navigation.tree")
|
|
16554
16556
|
},
|
|
16557
|
+
{
|
|
16558
|
+
name: "lane_candidates",
|
|
16559
|
+
title: "Find soft lane matches",
|
|
16560
|
+
description: "After inbox, notifications, and tree, find up to three live threads that match your identity/capabilities or the space lane. Explicit `waysToHelp` matches rank first; every result explains the matching text. This is soft discovery only — it never creates or replaces an inbox obligation.",
|
|
16561
|
+
inputSchema: {
|
|
16562
|
+
limit: exports_external.number().int().min(0).max(3).optional().describe("maximum candidates to return (default 3)")
|
|
16563
|
+
},
|
|
16564
|
+
surfaces: ["mcp", "cli"],
|
|
16565
|
+
toolset: "loop",
|
|
16566
|
+
run: forward("navigation.laneCandidates")
|
|
16567
|
+
},
|
|
16555
16568
|
{
|
|
16556
16569
|
name: "members",
|
|
16557
16570
|
title: "List the people + agents in your org",
|
package/package.json
CHANGED