@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.
Files changed (2) hide show
  1. package/README.md +38 -14
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -1,17 +1,23 @@
1
- # Trie - Your Code Guardian
1
+ # Trie: Your Trainable AI Agent
2
2
 
3
- **An AI-powered code assistant that watches your codebase, learns from your mistakes, and prevents bugs before they ship.**
3
+ **A trainable AI agent that watches your codebase, learns from your incidents, and prevents repeat bugs before they ship.**
4
4
 
5
5
  [![Download Workspace](https://img.shields.io/badge/Download-Trie%20Workspace-blue)](https://www.trie.dev) [![Follow on X](https://img.shields.io/badge/Follow-@louiskishfy-1DA1F2?logo=x)](https://x.com/louiskishfy)
6
6
 
7
7
  ## What Trie Does
8
8
 
9
- Trie is like having an experienced developer watching over your code 24/7. It:
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
- - **Learns from your mistakes** - Remember when you broke authentication last month? Trie does too.
12
- - **Prevents repeat bugs** - Warns you before you make the same mistake twice
13
- - **Works everywhere** - Same intelligence whether you're coding, committing, or deploying
14
- - **Speaks plain English** - No cryptic error codes at 2 AM
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/VS Code**:
249
- Install the Trie extension from your editor's marketplace.
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
- - GitHub Issues: [Report bugs and request features](https://x.com/louiskishfy)
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 - see [LICENSE](LICENSE) file for details.
448
+ MIT License
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@triedotdev/mcp",
3
- "version": "1.0.76",
3
+ "version": "1.0.77",
4
4
  "description": "Intelligent Agent Orchestration for AI Coding Tools",
5
5
  "main": "dist/index.js",
6
6
  "type": "module",