@triedotdev/mcp 1.0.5 → 1.0.6
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 +55 -8
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -8,9 +8,11 @@
|
|
|
8
8
|
|
|
9
9
|
- **13 Built-in Agents** - Security, Privacy, SOC 2, Legal, Architecture, DevOps, and more
|
|
10
10
|
- **Parallel Execution** - All agents run simultaneously for fast scans
|
|
11
|
+
- **🔥 YOLO Mode** - Autonomous auto-fixing as you code
|
|
11
12
|
- **Custom Agents** - Create agents from PDFs, docs, or style guides
|
|
12
|
-
- **No API Key Required** -
|
|
13
|
+
- **No API Key Required** - Works with any MCP-compatible AI tool (Cursor, Claude Code, VS Code)
|
|
13
14
|
- **Smart Triaging** - Only activates relevant agents based on code context
|
|
15
|
+
- **Docker Support** - Run in containers for CI/CD or isolated environments
|
|
14
16
|
|
|
15
17
|
## Quick Start
|
|
16
18
|
|
|
@@ -54,6 +56,58 @@ Run trie_security on this file
|
|
|
54
56
|
Run trie_soc2 to check compliance
|
|
55
57
|
```
|
|
56
58
|
|
|
59
|
+
## YOLO Mode 🔥
|
|
60
|
+
|
|
61
|
+
**Autonomous auto-fixing** - Trie watches your code and automatically fixes high-confidence issues as you code.
|
|
62
|
+
|
|
63
|
+
### Via MCP
|
|
64
|
+
|
|
65
|
+
```
|
|
66
|
+
Use trie_watch with action:"start" yolo:true
|
|
67
|
+
```
|
|
68
|
+
|
|
69
|
+
### Via CLI
|
|
70
|
+
|
|
71
|
+
```bash
|
|
72
|
+
trie-yolo
|
|
73
|
+
```
|
|
74
|
+
|
|
75
|
+
YOLO mode will:
|
|
76
|
+
- Watch for file changes
|
|
77
|
+
- Scan changed files automatically
|
|
78
|
+
- Auto-fix high-confidence issues (>95% confidence)
|
|
79
|
+
- Log all actions for review
|
|
80
|
+
|
|
81
|
+
## Docker
|
|
82
|
+
|
|
83
|
+
Run Trie in a container for CI/CD or isolated environments.
|
|
84
|
+
|
|
85
|
+
```bash
|
|
86
|
+
# Build
|
|
87
|
+
docker build -t trie-agent .
|
|
88
|
+
|
|
89
|
+
# YOLO mode (auto-fix)
|
|
90
|
+
docker run -v $(pwd):/app trie-agent --yolo
|
|
91
|
+
|
|
92
|
+
# Watch mode (scan only)
|
|
93
|
+
docker run -v $(pwd):/app trie-agent
|
|
94
|
+
|
|
95
|
+
# CI mode (one-shot scan)
|
|
96
|
+
docker run -v $(pwd):/app trie-agent --once
|
|
97
|
+
```
|
|
98
|
+
|
|
99
|
+
Or use Docker Compose:
|
|
100
|
+
|
|
101
|
+
```bash
|
|
102
|
+
docker-compose up
|
|
103
|
+
```
|
|
104
|
+
|
|
105
|
+
| Mode | Command | Description |
|
|
106
|
+
|------|---------|-------------|
|
|
107
|
+
| YOLO | `--yolo` | Auto-fix high-confidence issues |
|
|
108
|
+
| Watch | (default) | Scan on file changes, no auto-fix |
|
|
109
|
+
| CI | `--once` | One-shot scan, exit with error code if issues found |
|
|
110
|
+
|
|
57
111
|
## Built-in Agents
|
|
58
112
|
|
|
59
113
|
| Agent | Description |
|
|
@@ -134,13 +188,6 @@ Create `.trie/config.json` to customize:
|
|
|
134
188
|
}
|
|
135
189
|
}
|
|
136
190
|
```
|
|
137
|
-
|
|
138
|
-
## Links
|
|
139
|
-
|
|
140
|
-
- [Documentation](https://trie.dev/docs)
|
|
141
|
-
- [GitHub](https://github.com/Trie-OS/mcp-agent)
|
|
142
|
-
- [Discord](https://discord.gg/trie-ai)
|
|
143
|
-
|
|
144
191
|
## License
|
|
145
192
|
|
|
146
193
|
MIT
|