@codeatlas/mcp 2.0.0 → 2.0.1
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 +6 -0
- package/dist/mcp-server.js +147 -120
- package/dist/webview-ui/dist/assets/index.js +13 -13
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -149,6 +149,12 @@ A tab opens at `http://localhost:7742` showing six linked diagram layers: system
|
|
|
149
149
|
|
|
150
150
|
Set `CODEATLAS_EDITOR=<cmd>` to pick the editor (defaults to `$EDITOR`, then `code`, `cursor`, `subl`, `nvim`, `vim`).
|
|
151
151
|
|
|
152
|
+
### Run an AI Review from the browser
|
|
153
|
+
|
|
154
|
+
The home page has a **Start review** card that fans the review out across every entry point. **Changed only** restricts it to entry points whose code differs from baseline. **Specific review** opens a textarea so you can tell the AI exactly what to focus on. **Cancel** stops the in-flight LLM call immediately; **Clear** wipes findings and resets state.
|
|
155
|
+
|
|
156
|
+
Each finding is tagged with the commit SHA it was reviewed against (or a content-hash for non-git workspaces). Re-running with the same code + guidelines surfaces a **"Nothing changed since last review"** badge instead of burning another LLM call.
|
|
157
|
+
|
|
152
158
|
### Connect an LLM
|
|
153
159
|
|
|
154
160
|
AI Review and natural-language search use any OpenAI-compatible provider. Pick one:
|