@triedotdev/mcp 1.0.84 → 1.0.86
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/README.md +1 -3
- package/dist/{chunk-Y23VXKHO.js → chunk-KERQ4JXR.js} +5 -5
- package/dist/{chunk-Y23VXKHO.js.map → chunk-KERQ4JXR.js.map} +1 -1
- package/dist/cli/main.js +12 -5
- package/dist/cli/main.js.map +1 -1
- package/dist/cli/yolo-daemon.js +1 -1
- package/dist/index.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
A trainable AI agent that watches all of your codebases, learns from your incidents, and prevents repeat bugs before they ship.
|
|
4
4
|
|
|
5
|
-
Download Workspace Follow on X
|
|
5
|
+
[Download Workspace](https://www.trie.dev) · [Follow on X](https://x.com/louiskishfy)
|
|
6
6
|
|
|
7
7
|
## What Trie Does
|
|
8
8
|
|
|
@@ -303,8 +303,6 @@ Design Scout - Visual consistency, design systems
|
|
|
303
303
|
DevOps Scout - Configuration issues, deployment patterns
|
|
304
304
|
Performance Scout - Speed bottlenecks, optimization opportunities
|
|
305
305
|
|
|
306
|
-
View all scouts →
|
|
307
|
-
|
|
308
306
|
## Installation & Setup
|
|
309
307
|
|
|
310
308
|
### Requirements
|
|
@@ -1532,7 +1532,7 @@ var InteractiveDashboard = class {
|
|
|
1532
1532
|
case "l":
|
|
1533
1533
|
this.goToView("rawlog");
|
|
1534
1534
|
break;
|
|
1535
|
-
case "
|
|
1535
|
+
case "v":
|
|
1536
1536
|
this.goToView("skills");
|
|
1537
1537
|
this.refreshSkillsData();
|
|
1538
1538
|
break;
|
|
@@ -4002,11 +4002,11 @@ var InteractiveDashboard = class {
|
|
|
4002
4002
|
if (this.state.readiness) paneHints.push(hint("r", "Ready"));
|
|
4003
4003
|
if (this.state.semanticAnalysis || this.state.attackSurface) paneHints.push(hint("a", "Analysis"));
|
|
4004
4004
|
paneHints.push(hint("t", "Memory"));
|
|
4005
|
-
paneHints.push(hint("
|
|
4005
|
+
paneHints.push(hint("v", "Toolkit"));
|
|
4006
4006
|
paneHints.push(hint("l", "Log"));
|
|
4007
4007
|
const paneStr = paneHints.length > 0 ? " " + paneHints.join(" ") : "";
|
|
4008
4008
|
if (!this.state.scanComplete) {
|
|
4009
|
-
this.renderLine(" " + hint("
|
|
4009
|
+
this.renderLine(" " + hint("v", "Toolkit") + " " + hint("l", "Log") + " " + hint("q", "Quit") + " " + hint("h", "Help"), width);
|
|
4010
4010
|
} else if (this.state.view === "skills") {
|
|
4011
4011
|
this.renderLine(" " + hint("Tab", "Panel") + " " + hint("j/k", "Select") + " " + hint("Enter", "Install") + " " + hint("b", "Back") + " " + hint("h", "Help") + " " + hint("q", "Quit"), width);
|
|
4012
4012
|
} else if (this.state.view === "guardian") {
|
|
@@ -4516,7 +4516,7 @@ var InteractiveDashboard = class {
|
|
|
4516
4516
|
keyLine("r", "Readiness - Production readiness score");
|
|
4517
4517
|
keyLine("a", "Analysis - Semantic analysis + Attack surface");
|
|
4518
4518
|
keyLine("g", "Guardian - Alert history from all agents");
|
|
4519
|
-
keyLine("
|
|
4519
|
+
keyLine("v", "Toolkit - Scouts (built-in) + Skills (installable)");
|
|
4520
4520
|
keyLine("l", "Log - Raw log/activity viewer");
|
|
4521
4521
|
pLine(" " + colors.dim("In Toolkit view: press [c] to create from file"));
|
|
4522
4522
|
pLine("");
|
|
@@ -9983,4 +9983,4 @@ export {
|
|
|
9983
9983
|
InteractiveDashboard,
|
|
9984
9984
|
TrieScanTool
|
|
9985
9985
|
};
|
|
9986
|
-
//# sourceMappingURL=chunk-
|
|
9986
|
+
//# sourceMappingURL=chunk-KERQ4JXR.js.map
|