@triedotdev/mcp 1.0.76 → 1.0.77
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 +38 -14
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,17 +1,23 @@
|
|
|
1
|
-
# Trie
|
|
1
|
+
# Trie: Your Trainable AI Agent
|
|
2
2
|
|
|
3
|
-
**
|
|
3
|
+
**A trainable AI agent that watches your codebase, learns from your incidents, and prevents repeat bugs before they ship.**
|
|
4
4
|
|
|
5
5
|
[](https://www.trie.dev) [](https://x.com/louiskishfy)
|
|
6
6
|
|
|
7
7
|
## What Trie Does
|
|
8
8
|
|
|
9
|
-
|
|
9
|
+
- **Central skill repository**: One place for all your skills — carry context and rules across Cursor, Claude, VS Code, CLI, and CI/CD
|
|
10
|
+
- **Sets and tracks goals**: "Reduce auth bugs by 50%" then actually measures progress and celebrates wins
|
|
11
|
+
- **Tests your theories**: "Mondays have more bugs" → Trie validates with real data and builds confidence over time
|
|
12
|
+
- **Learns from YOUR incidents**: Train it on your specific patterns, not generic rules that don't fit your codebase
|
|
10
13
|
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
14
|
+
## Goal
|
|
15
|
+
|
|
16
|
+
Trie exists so you can maintain multiple codebases as one person without losing your mind.
|
|
17
|
+
|
|
18
|
+
Every bug you fix teaches Trie a pattern that protects all your projects. Every incident you report becomes institutional knowledge that travels with your code.
|
|
19
|
+
|
|
20
|
+
Instead of burning tokens on the same questions across different repos or forgetting why you architected something a certain way six months ago, Trie remembers for you. The result is faster development with fewer production fires, because your personal AI agent gets smarter every time something breaks instead of starting from zero in every conversation.
|
|
15
21
|
|
|
16
22
|
## Quick Start
|
|
17
23
|
|
|
@@ -56,9 +62,9 @@ trie bad # This was a false alarm
|
|
|
56
62
|
|
|
57
63
|
## Why Trie Exists
|
|
58
64
|
|
|
59
|
-
Building apps with AI tools like Cursor and Claude is incredibly fast - but maintaining them alone is a nightmare. You fix a bug and forget why it happened. The same issues keep coming back. Your codebase grows faster than your memory of it.
|
|
65
|
+
Building apps with AI tools like Cursor and Claude Code is incredibly fast - but maintaining them alone is a nightmare. You fix a bug and forget why it happened. The same issues keep coming back. Your codebase grows faster than your memory of it.
|
|
60
66
|
|
|
61
|
-
Trie solves this by being your **persistent memory**. It remembers what broke before, learns patterns across your projects, and warns you before you ship risky code.
|
|
67
|
+
Trie solves this by being your **persistent memory**. It remembers what broke before, learns patterns across your projects, and warns you before you ship risky code. Tools like Cursor Bugbot are great, but just flagging issues isn't going to help you avoid similar patterns in the future. With Trie, you'll find quickly that you end up architecting apps and prompting better.
|
|
62
68
|
|
|
63
69
|
## Key Features
|
|
64
70
|
|
|
@@ -230,6 +236,19 @@ trie init
|
|
|
230
236
|
# - Bootstrap files (optional)
|
|
231
237
|
```
|
|
232
238
|
|
|
239
|
+
### API Key Configuration
|
|
240
|
+
For enhanced AI-powered analysis, set up your Anthropic API key:
|
|
241
|
+
|
|
242
|
+
```bash
|
|
243
|
+
# Add to your .env file (recommended)
|
|
244
|
+
echo "ANTHROPIC_API_KEY=your-api-key-here" >> .env
|
|
245
|
+
|
|
246
|
+
# Or set as environment variable
|
|
247
|
+
export ANTHROPIC_API_KEY=your-api-key-here
|
|
248
|
+
```
|
|
249
|
+
|
|
250
|
+
**Note:** Trie works offline without an API key using built-in templates, but the AI-enhanced analysis provides much richer insights and explanations.
|
|
251
|
+
|
|
233
252
|
### AI Tool Integration
|
|
234
253
|
|
|
235
254
|
**For Claude (MCP)**:
|
|
@@ -239,14 +258,19 @@ Add to your MCP settings:
|
|
|
239
258
|
"mcpServers": {
|
|
240
259
|
"trie": {
|
|
241
260
|
"command": "trie",
|
|
242
|
-
"args": ["mcp"]
|
|
261
|
+
"args": ["mcp"],
|
|
262
|
+
"env": {
|
|
263
|
+
"ANTHROPIC_API_KEY": "your-api-key-here"
|
|
264
|
+
}
|
|
243
265
|
}
|
|
244
266
|
}
|
|
245
267
|
}
|
|
246
268
|
```
|
|
247
269
|
|
|
248
|
-
**For Cursor
|
|
249
|
-
|
|
270
|
+
**For Cursor**:
|
|
271
|
+
Cursor has built-in MCP support. Add the above configuration to your Cursor MCP settings.
|
|
272
|
+
|
|
273
|
+
**Note**: VS Code extension is coming soon.
|
|
250
274
|
|
|
251
275
|
## CLI Reference
|
|
252
276
|
|
|
@@ -416,9 +440,9 @@ Remove or replace with proper logging.
|
|
|
416
440
|
**Hooks not working**: Reinstall with `trie init`. Make sure you have write permissions to `.git/hooks/`.
|
|
417
441
|
|
|
418
442
|
### Getting Help
|
|
419
|
-
-
|
|
443
|
+
- Issues: [Report bugs and request features](https://x.com/louiskishfy)
|
|
420
444
|
- Twitter: [@louiskishfy](https://x.com/louiskishfy) for quick questions
|
|
421
445
|
|
|
422
446
|
## License
|
|
423
447
|
|
|
424
|
-
MIT License
|
|
448
|
+
MIT License
|