@triedotdev/mcp 1.0.158 → 1.0.162
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/{chunk-UAQXKEMS.js → chunk-ERMLZJTK.js} +17 -3
- package/dist/chunk-ERMLZJTK.js.map +1 -0
- package/dist/{chunk-E2DRW5XC.js → chunk-HFVPHQL3.js} +2 -2
- package/dist/{chunk-IW7VZ2XD.js → chunk-LLDZDU2Y.js} +62 -2
- package/dist/chunk-LLDZDU2Y.js.map +1 -0
- package/dist/{chunk-NYYVYJPJ.js → chunk-Q4K7CFCK.js} +275 -59
- package/dist/chunk-Q4K7CFCK.js.map +1 -0
- package/dist/{chunk-LANXFFR2.js → chunk-UDQBOLIR.js} +18 -4
- package/dist/chunk-UDQBOLIR.js.map +1 -0
- package/dist/cli/main.js +2 -2
- package/dist/cli/yolo-daemon.js +4 -4
- package/dist/index.js +5 -5
- package/dist/server/mcp-server.js +5 -5
- package/dist/{terminal-spawn-P5M5PHAV.js → terminal-spawn-5YXDMUCF.js} +32 -1
- package/dist/{terminal-spawn-P5M5PHAV.js.map → terminal-spawn-5YXDMUCF.js.map} +1 -1
- package/dist/{tiered-storage-WWVVHGFR.js → tiered-storage-FHHAJR4P.js} +2 -2
- package/dist/{trie-agent-ZLKBEWPW.js → trie-agent-NYSPGZYS.js} +4 -4
- package/package.json +1 -1
- package/dist/chunk-IW7VZ2XD.js.map +0 -1
- package/dist/chunk-LANXFFR2.js.map +0 -1
- package/dist/chunk-NYYVYJPJ.js.map +0 -1
- package/dist/chunk-UAQXKEMS.js.map +0 -1
- /package/dist/{chunk-E2DRW5XC.js.map → chunk-HFVPHQL3.js.map} +0 -0
- /package/dist/{tiered-storage-WWVVHGFR.js.map → tiered-storage-FHHAJR4P.js.map} +0 -0
- /package/dist/{trie-agent-ZLKBEWPW.js.map → trie-agent-NYSPGZYS.js.map} +0 -0
|
@@ -36,12 +36,13 @@ import {
|
|
|
36
36
|
TrieGetRelatedGovernanceTool,
|
|
37
37
|
TriePipelineTool,
|
|
38
38
|
TrieQueryContextTool,
|
|
39
|
+
TrieQueryLedgerBlocksTool,
|
|
39
40
|
TrieTellTool,
|
|
40
41
|
TrieWatchTool,
|
|
41
42
|
getPrompt,
|
|
42
43
|
getSystemPrompt,
|
|
43
44
|
handleCheckpointTool
|
|
44
|
-
} from "./chunk-
|
|
45
|
+
} from "./chunk-Q4K7CFCK.js";
|
|
45
46
|
import {
|
|
46
47
|
CodebaseIndex
|
|
47
48
|
} from "./chunk-Q5EKA5YA.js";
|
|
@@ -59,7 +60,7 @@ import {
|
|
|
59
60
|
getGlobalMemoryStats,
|
|
60
61
|
listTrackedProjects,
|
|
61
62
|
searchGlobalPatterns
|
|
62
|
-
} from "./chunk-
|
|
63
|
+
} from "./chunk-HFVPHQL3.js";
|
|
63
64
|
import {
|
|
64
65
|
ContextGraph
|
|
65
66
|
} from "./chunk-VUL52BQL.js";
|
|
@@ -2137,6 +2138,7 @@ var ToolRegistry = class {
|
|
|
2137
2138
|
this.tools.set("get_governance", new TrieGetGovernanceTool());
|
|
2138
2139
|
this.tools.set("get_decisions", new TrieGetDecisionsTool());
|
|
2139
2140
|
this.tools.set("get_blockers", new TrieGetBlockersTool());
|
|
2141
|
+
this.tools.set("query_ledger_blocks", new TrieQueryLedgerBlocksTool());
|
|
2140
2142
|
this.tools.set("get_related_governance", new TrieGetRelatedGovernanceTool());
|
|
2141
2143
|
this.tools.set("get_related_decisions", new TrieGetRelatedDecisionsTool());
|
|
2142
2144
|
this.tools.set("query_context", new TrieQueryContextTool());
|
|
@@ -2655,7 +2657,7 @@ var ToolRegistry = class {
|
|
|
2655
2657
|
},
|
|
2656
2658
|
{
|
|
2657
2659
|
name: "trie_get_blockers",
|
|
2658
|
-
description:
|
|
2660
|
+
description: 'Get active blockers from governance ledger. Returns only unresolved blockers. NOT the same as "blocks" (ledger chain) \u2014 use trie_query_ledger_blocks for that.',
|
|
2659
2661
|
inputSchema: {
|
|
2660
2662
|
type: "object",
|
|
2661
2663
|
properties: {
|
|
@@ -2665,6 +2667,18 @@ var ToolRegistry = class {
|
|
|
2665
2667
|
}
|
|
2666
2668
|
}
|
|
2667
2669
|
},
|
|
2670
|
+
{
|
|
2671
|
+
name: "trie_query_ledger_blocks",
|
|
2672
|
+
description: 'Query the ledger chain blocks \u2014 the tamper-evident chain of recorded issues. Use when user asks about "blocks", "ledger chain", "what issues in my blocks", "most frequent issues in blocks", etc. Returns block summary and aggregation by file, severity, and agent.',
|
|
2673
|
+
inputSchema: {
|
|
2674
|
+
type: "object",
|
|
2675
|
+
properties: {
|
|
2676
|
+
analysis: { type: "string", enum: ["summary", "issues", "all"], description: "What to analyze: summary, issues (default), or all" },
|
|
2677
|
+
limit: { type: "number", description: "Max blocks to include (default 50)" },
|
|
2678
|
+
directory: { type: "string", description: "Working directory" }
|
|
2679
|
+
}
|
|
2680
|
+
}
|
|
2681
|
+
},
|
|
2668
2682
|
{
|
|
2669
2683
|
name: "trie_get_related_governance",
|
|
2670
2684
|
description: "Find governance records related to a specific governance record, file, or topic. Targeted context retrieval.",
|
|
@@ -3980,4 +3994,4 @@ export {
|
|
|
3980
3994
|
MCPServer,
|
|
3981
3995
|
startServer
|
|
3982
3996
|
};
|
|
3983
|
-
//# sourceMappingURL=chunk-
|
|
3997
|
+
//# sourceMappingURL=chunk-UDQBOLIR.js.map
|