@triedotdev/mcp 1.0.8 → 1.0.9

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 +13 -8
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -63,20 +63,25 @@ Run trie_soc2 to check compliance
63
63
 
64
64
  ## Super Reviewer 🔍
65
65
 
66
- **Interactive AI-guided code reviews** Code reviews are the bottleneck in AI coding. Super Reviewer scales them by putting the human back in the loop, shepherded by AI.
66
+ AI accelerates coding 10-100x, but code reviews remain 1-1.5x. You're either waiting on reviewers or drowning in self-review of your own AI-generated output. Super Reviewer fixes this by making **you the driver** while AI handles the heavy lifting.
67
67
 
68
68
  ```
69
69
  Use trie_pr_review
70
70
  Use trie_pr_review with pr:"12345"
71
71
  ```
72
72
 
73
- Super Reviewer will:
74
- - Walk through each file, chunk by chunk
75
- - Explain changes, connect dots across files
76
- - Sequence files for understandability (schemas first, then core logic, then tests)
77
- - Look for issues: state/lifecycle bugs, race conditions, missing pieces
78
- - Pause for your cross-examination before moving to the next file
79
- - Help you review 10x faster while catching MORE issues
73
+ **What happens:**
74
+ - AI orders files for comprehension (schemas → core logic → implementation → tests)
75
+ - Walks you through each chunk, explaining what changed and why
76
+ - Connects the dots across files, correlates with design docs
77
+ - Hunts for real problems: state bugs, race conditions, missing error handling
78
+ - Pauses after each file so you can question, debate, or fix
79
+ - You bring the judgment; AI brings the throughput
80
+
81
+ **Requirements:**
82
+ - [GitHub CLI (`gh`)](https://cli.github.com/) installed and authenticated (`gh auth login`)
83
+ - Git repository with changes to review
84
+ - For PR reviews: repo must be pushed to GitHub
80
85
 
81
86
  ## YOLO Mode 🔥
82
87
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@triedotdev/mcp",
3
- "version": "1.0.8",
3
+ "version": "1.0.9",
4
4
  "description": "Intelligent Agent Orchestration for AI Coding Tools",
5
5
  "main": "dist/index.js",
6
6
  "type": "module",