codemap-ai 3.5.0 → 3.6.0
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 +31 -0
- package/dist/chunk-6TAWVGMT.js +3539 -0
- package/dist/chunk-6TAWVGMT.js.map +1 -0
- package/dist/cli.js +43 -3556
- package/dist/cli.js.map +1 -1
- package/dist/{flow-server-FMPWJSLK.js → flow-server-U3IPHQ3N.js} +2 -2
- package/dist/{flow-server-FMPWJSLK.js.map → flow-server-U3IPHQ3N.js.map} +1 -1
- package/dist/mcp-server.js +1 -1
- package/dist/mcp-server.js.map +1 -1
- package/dist/visualize-LB2A4KEA.js +230 -0
- package/dist/visualize-LB2A4KEA.js.map +1 -0
- package/package.json +21 -3
- package/web-dist/assets/index-AyyZ2Kpr.js +96 -0
- package/web-dist/assets/index-CeA2-_I-.css +1 -0
- package/web-dist/index.html +14 -0
package/README.md
CHANGED
|
@@ -149,6 +149,37 @@ Risk Assessment:
|
|
|
149
149
|
|
|
150
150
|
---
|
|
151
151
|
|
|
152
|
+
### `codemap visualize` - Interactive Impact Visualization ✨ NEW
|
|
153
|
+
|
|
154
|
+
Visualize impact analysis in an interactive web interface:
|
|
155
|
+
|
|
156
|
+
```bash
|
|
157
|
+
npx codemap-ai visualize
|
|
158
|
+
```
|
|
159
|
+
|
|
160
|
+
**What it does:**
|
|
161
|
+
1. Analyzes impact of your changes
|
|
162
|
+
2. Starts a local web server (port 37421)
|
|
163
|
+
3. Opens browser with interactive graph visualization
|
|
164
|
+
4. Shows call chains, severity levels, and affected functions
|
|
165
|
+
|
|
166
|
+
**Features:**
|
|
167
|
+
- 🎨 Color-coded severity (Red=CRITICAL, Orange=HIGH, Yellow=MEDIUM, Green=LOW)
|
|
168
|
+
- 🔍 Zoom, pan, and explore the call graph
|
|
169
|
+
- 💎 Changed functions highlighted
|
|
170
|
+
- 📊 Impact statistics sidebar
|
|
171
|
+
- 📝 Detailed function information on click
|
|
172
|
+
|
|
173
|
+
**Perfect for:**
|
|
174
|
+
- Understanding complex impact chains
|
|
175
|
+
- PR reviews and demos
|
|
176
|
+
- Identifying critical paths
|
|
177
|
+
- Sharing impact visualizations with team
|
|
178
|
+
|
|
179
|
+
See [Visualization Guide](./docs/VISUALIZATION.md) for details.
|
|
180
|
+
|
|
181
|
+
---
|
|
182
|
+
|
|
152
183
|
### `codemap reindex` - Force Full Rebuild
|
|
153
184
|
|
|
154
185
|
Force re-index everything from scratch:
|