@codeatlas/mcp 2.0.1 → 2.0.3
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 +7 -3
- package/dist/mcp-server.js +231 -205
- package/dist/webview-ui/dist/assets/index.css +1 -1
- package/dist/webview-ui/dist/assets/index.js +51 -18
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -149,15 +149,19 @@ 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
|
|
152
|
+
### Run a Code Review from the browser
|
|
153
153
|
|
|
154
|
-
The home page has a **
|
|
154
|
+
The home page has a **Code 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
|
+
When findings exist, the **Findings popover** opens with a top-down summary: an "Interpretation" line that names the dominant pattern across all findings (auth gaps, validation risks, secret leakage, N+1 queries…), per-layer breakdowns that name the actual clusters / routes / files affected, and a "Top concerns (focus here first)" shortlist. Every finding row carries **Resolve / Ignore / Comment / Copy** buttons. A "Copy ▾" dropdown copies all findings — or just errors / warnings / info — as Markdown ready to paste into a PR or ticket.
|
|
157
|
+
|
|
158
|
+
Inside every diagram (System Design, Feature Areas, API List, Sequence, File, Function Flow), entities with findings show a colored count marker. Click it to open the popover (same actions) right where the issue lives — state changes propagate to every open tab immediately.
|
|
155
159
|
|
|
156
160
|
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
161
|
|
|
158
162
|
### Connect an LLM
|
|
159
163
|
|
|
160
|
-
|
|
164
|
+
Code Review and natural-language search use any OpenAI-compatible provider. Pick one:
|
|
161
165
|
|
|
162
166
|
| Provider | Env var | `provider` setting |
|
|
163
167
|
|----------|---------|--------------------|
|