@jphutchins/code-review 0.1.0-alpha.10 → 0.1.0-alpha.12

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jphutchins/code-review",
3
- "version": "0.1.0-alpha.10",
3
+ "version": "0.1.0-alpha.12",
4
4
  "description": "Deterministic commenter for agentic PR review — gather, render, inline, post, adapt, extract, cost, validate, print-schema",
5
5
  "type": "module",
6
6
  "license": "MIT",
@@ -38,13 +38,6 @@ These findings are on lines not in the diff, so they can't be anchored as inline
38
38
 
39
39
  <% it.strays.forEach(function(f) { -%>
40
40
  - <%= it.severityEmoji(f.severity) %> `<%= f.path %>:<%= f.start_line %><% if (f.start_line !== f.end_line) { %>–<%= f.end_line %><% } %>` — <%= f.title %> · confidence <%= it.formatConfidence(f.confidence) %>
41
- <details><summary>Reasoning</summary>
42
-
43
- <% f.reasoning.split("\n").forEach(function(rl) { -%>
44
- <%= rl %>
45
- <% }) -%>
46
-
47
- </details>
48
41
  <% if (f.recommendation) { -%>
49
42
 
50
43
  **Recommended fix:** <%~ f.recommendation %>
@@ -60,6 +53,14 @@ These findings are on lines not in the diff, so they can't be anchored as inline
60
53
  <%~ f.patchProjection.raw %>
61
54
  ```
62
55
  <% } -%>
56
+
57
+ <details><summary>Reasoning</summary>
58
+
59
+ <% f.reasoning.split("\n").forEach(function(rl) { -%>
60
+ <%= rl %>
61
+ <% }) -%>
62
+
63
+ </details>
63
64
  <% }) %>
64
65
  <% } %>
65
66