@triedotdev/mcp 1.0.56 → 1.0.58
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 -1
- package/dist/{chunk-E2LWAVIW.js → chunk-JAVEBJF4.js} +527 -203
- package/dist/chunk-JAVEBJF4.js.map +1 -0
- package/dist/cli/yolo-daemon.js +1 -1
- package/dist/index.js +11 -1
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/dist/chunk-E2LWAVIW.js.map +0 -1
package/dist/cli/yolo-daemon.js
CHANGED
package/dist/index.js
CHANGED
|
@@ -28,7 +28,7 @@ import {
|
|
|
28
28
|
StreamingManager,
|
|
29
29
|
TrieScanTool,
|
|
30
30
|
loadConfig
|
|
31
|
-
} from "./chunk-
|
|
31
|
+
} from "./chunk-JAVEBJF4.js";
|
|
32
32
|
import "./chunk-KLKY34RE.js";
|
|
33
33
|
import {
|
|
34
34
|
CRITICAL_REVIEW_CHECKLIST,
|
|
@@ -2617,6 +2617,13 @@ var TrieWatchTool = class {
|
|
|
2617
2617
|
streamingManager: this.streamingManager,
|
|
2618
2618
|
dashboard: this.dashboard
|
|
2619
2619
|
});
|
|
2620
|
+
if (this.streamingManager) {
|
|
2621
|
+
this.streamingManager.reportWatchStatus({
|
|
2622
|
+
watching: true,
|
|
2623
|
+
directories: this.watchers.size,
|
|
2624
|
+
debounceMs
|
|
2625
|
+
});
|
|
2626
|
+
}
|
|
2620
2627
|
return {
|
|
2621
2628
|
content: [{
|
|
2622
2629
|
type: "text",
|
|
@@ -2796,6 +2803,9 @@ Found ${newIssues} issues in changed files!`);
|
|
|
2796
2803
|
if (!isInteractiveMode()) {
|
|
2797
2804
|
console.error("\n\u{1F441}\uFE0F Watch mode stopped.\n");
|
|
2798
2805
|
}
|
|
2806
|
+
if (this.streamingManager) {
|
|
2807
|
+
this.streamingManager.reportWatchStatus({ watching: false, directories: 0 });
|
|
2808
|
+
}
|
|
2799
2809
|
return {
|
|
2800
2810
|
content: [{
|
|
2801
2811
|
type: "text",
|