@christianmorup/review-intent 0.1.0 → 0.1.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 -4
- package/dist/render.js +1306 -259
- package/dist/review-order.js +78 -0
- package/dist/skill.js +6 -7
- package/dist/themes.js +176 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -92,10 +92,12 @@ self-contained inline SVG (no charting dependency, deterministic output):
|
|
|
92
92
|
that carry agent rationale (the completeness contract, visualized).
|
|
93
93
|
4. **Reach ripple** — the reach graph as concentric rings: changed files at the
|
|
94
94
|
centre, importers rippling outward.
|
|
95
|
-
5. **
|
|
96
|
-
reach) on the x-axis
|
|
97
|
-
|
|
98
|
-
|
|
95
|
+
5. **Change map** — the signature view: one dot per changed file, placed by
|
|
96
|
+
measured *downstream reach* (how many repo files import it) on the x-axis
|
|
97
|
+
against measured *churn* (± lines) on the y-axis, sized by hunk count and
|
|
98
|
+
coloured red when the file carries a complexity hotspot. Files in the shaded
|
|
99
|
+
top-right corner are the largest and most depended-on — the review-first
|
|
100
|
+
targets, picked out instead of being averaged into a single PR-wide score.
|
|
99
101
|
|
|
100
102
|
`npm run sample` builds and writes a representative `sample-output.html` you can
|
|
101
103
|
open to see the whole page.
|