@triedotdev/mcp 1.0.142 → 1.0.144
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-Y2LYDCJD.js → chunk-5FQTNPBP.js} +1296 -37
- package/dist/chunk-5FQTNPBP.js.map +1 -0
- package/dist/cli/yolo-daemon.js +1 -1
- package/dist/index.js +103 -1225
- package/dist/index.js.map +1 -1
- package/package.json +2 -1
- package/dist/chunk-Y2LYDCJD.js.map +0 -1
package/README.md
CHANGED
|
@@ -374,9 +374,15 @@ Links PRs to changed files and to Linear tickets mentioned in PR descriptions. R
|
|
|
374
374
|
# Via MCP
|
|
375
375
|
trie_cloud_fix action:configure apiKey:"key-..."
|
|
376
376
|
trie_cloud_fix action:dispatch issueIds:["issue-1", "issue-2"]
|
|
377
|
+
|
|
378
|
+
# Force cloud dispatch (bypass triage when user explicitly wants cloud)
|
|
379
|
+
trie_cloud_fix action:dispatch forceCloud:true
|
|
380
|
+
|
|
381
|
+
# Ad-hoc dispatch (no scan issues — e.g. from trie_propose_fix)
|
|
382
|
+
trie_cloud_fix action:dispatch file:"src/storage/tiered-storage.ts" issue:"Concurrent file writes corrupt ledger" fix:"Add file locking and atomic writes"
|
|
377
383
|
```
|
|
378
384
|
|
|
379
|
-
The cloud agent runs in an isolated VM, applies the fix, runs tests, captures screenshots, and opens a PR. Requires `CURSOR_API_KEY`. Use `trie_fix action:route` first to see which issues qualify.
|
|
385
|
+
The cloud agent runs in an isolated VM, applies the fix, runs tests, captures screenshots, and opens a PR. Requires `CURSOR_API_KEY`. Use `trie_fix action:route` first to see which issues qualify. Add `forceCloud:true` to bypass triage when you explicitly want cloud.
|
|
380
386
|
|
|
381
387
|
### Fix Triage System
|
|
382
388
|
|