@triedotdev/mcp 1.0.143 → 1.0.145
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 +7 -1
- package/dist/{chunk-AIJF67CF.js → chunk-JTGKHPDR.js} +100 -37
- package/dist/chunk-JTGKHPDR.js.map +1 -0
- package/dist/cli/yolo-daemon.js +1 -1
- package/dist/index.js +20 -1
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/dist/chunk-AIJF67CF.js.map +0 -1
package/dist/cli/yolo-daemon.js
CHANGED
package/dist/index.js
CHANGED
|
@@ -48,7 +48,7 @@ import {
|
|
|
48
48
|
getPrompt,
|
|
49
49
|
getSystemPrompt,
|
|
50
50
|
handleCheckpointTool
|
|
51
|
-
} from "./chunk-
|
|
51
|
+
} from "./chunk-JTGKHPDR.js";
|
|
52
52
|
import "./chunk-23RJT5WT.js";
|
|
53
53
|
import "./chunk-N2EDZTKG.js";
|
|
54
54
|
import {
|
|
@@ -3600,6 +3600,25 @@ var ToolRegistry = class {
|
|
|
3600
3600
|
items: { type: "string" },
|
|
3601
3601
|
description: "Issue IDs to dispatch (from trie_scan). If omitted, dispatches all cloud-eligible pending issues."
|
|
3602
3602
|
},
|
|
3603
|
+
forceCloud: {
|
|
3604
|
+
type: "boolean",
|
|
3605
|
+
description: "When true, bypass triage and dispatch ALL resolved issues to cloud agents. Use when user explicitly requests cloud fix."
|
|
3606
|
+
},
|
|
3607
|
+
file: {
|
|
3608
|
+
type: "string",
|
|
3609
|
+
description: "For ad-hoc dispatch: file path (use with issue and fix when no scan issues exist)"
|
|
3610
|
+
},
|
|
3611
|
+
issue: {
|
|
3612
|
+
type: "string",
|
|
3613
|
+
description: "For ad-hoc dispatch: issue description"
|
|
3614
|
+
},
|
|
3615
|
+
fix: {
|
|
3616
|
+
type: "string",
|
|
3617
|
+
description: "For ad-hoc dispatch: suggested fix"
|
|
3618
|
+
},
|
|
3619
|
+
line: { type: "number", description: "For ad-hoc dispatch: line number" },
|
|
3620
|
+
severity: { type: "string", description: "For ad-hoc dispatch: severity (critical, serious, moderate, low)" },
|
|
3621
|
+
effort: { type: "string", description: "For ad-hoc dispatch: effort (trivial, easy, medium, hard)" },
|
|
3603
3622
|
apiKey: {
|
|
3604
3623
|
type: "string",
|
|
3605
3624
|
description: "Cursor API key (configure action only)"
|