@triedotdev/mcp 1.0.81 → 1.0.82
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 +23 -0
- package/dist/{chunk-YKG4KIY7.js → chunk-CGALCUZE.js} +8518 -8518
- package/dist/chunk-CGALCUZE.js.map +1 -0
- package/dist/{chunk-MVWRFARH.js → chunk-IDDEVC3M.js} +3 -3
- package/dist/{chunk-2BXLPYHR.js → chunk-W4SQE6F7.js} +2 -2
- package/dist/{chunk-FW435YKY.js → chunk-YHQYOD6M.js} +2 -2
- package/dist/cli/main.d.ts +15 -0
- package/dist/cli/main.js +71 -5
- package/dist/cli/main.js.map +1 -1
- package/dist/cli/yolo-daemon.js +3 -3
- package/dist/index.js +4 -4
- package/dist/workers/agent-worker.js +1 -1
- package/package.json +1 -1
- package/dist/chunk-YKG4KIY7.js.map +0 -1
- /package/dist/{chunk-MVWRFARH.js.map → chunk-IDDEVC3M.js.map} +0 -0
- /package/dist/{chunk-2BXLPYHR.js.map → chunk-W4SQE6F7.js.map} +0 -0
- /package/dist/{chunk-FW435YKY.js.map → chunk-YHQYOD6M.js.map} +0 -0
package/README.md
CHANGED
|
@@ -173,6 +173,25 @@ trie watch
|
|
|
173
173
|
|
|
174
174
|
Interactive panels for goals, memory, scout activity, and more.
|
|
175
175
|
|
|
176
|
+
**Running in Background:**
|
|
177
|
+
To keep `trie watch` running in the background, use `screen` or `tmux`:
|
|
178
|
+
|
|
179
|
+
```bash
|
|
180
|
+
# Using screen
|
|
181
|
+
screen -S trie-watch
|
|
182
|
+
trie watch
|
|
183
|
+
# Press Ctrl+A then D to detach
|
|
184
|
+
# Reattach with: screen -r trie-watch
|
|
185
|
+
|
|
186
|
+
# Using tmux
|
|
187
|
+
tmux new -s trie-watch
|
|
188
|
+
trie watch
|
|
189
|
+
# Press Ctrl+B then D to detach
|
|
190
|
+
# Reattach with: tmux attach -t trie-watch
|
|
191
|
+
```
|
|
192
|
+
|
|
193
|
+
This allows you to keep the guardian running while using other terminals. The interactive dashboard will be available when you reattach.
|
|
194
|
+
|
|
176
195
|
### JIT Defect Prediction ("Gotchas")
|
|
177
196
|
Trie connects to your issue tracker and project history to predict problems *while you work*:
|
|
178
197
|
|
|
@@ -353,6 +372,10 @@ trie pause # Disable warnings for 1 hour
|
|
|
353
372
|
### Watch Mode
|
|
354
373
|
```bash
|
|
355
374
|
trie watch # Start interactive monitoring dashboard
|
|
375
|
+
|
|
376
|
+
# Run in background with screen/tmux:
|
|
377
|
+
screen -S trie-watch && trie watch # Detach: Ctrl+A, D
|
|
378
|
+
tmux new -s trie-watch && trie watch # Detach: Ctrl+B, D
|
|
356
379
|
```
|
|
357
380
|
|
|
358
381
|
## Configuration
|