You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix: tell headless Claude its text output IS the report file
claude -p captures stdout text, not tool output. The previous prompt
let Claude produce the detailed report via skill invocation but then
write only a summary as its final text response. Now explicitly states
that every word of text output goes into the saved report file.
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Copy file name to clipboardExpand all lines: scripts/review-prompt.md
+13-6Lines changed: 13 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
Run /ego-review on the extension at {{EXT_PATH}}.
2
2
3
-
IMPORTANT: You MUST read the extension source files and produce the FULL ego-review report with ALL six sections. Do NOT summarize. Do NOT skip phases. Output the complete report in markdown.
3
+
Your ENTIRE text output will be saved as the review report file. Do NOT summarize at the end — your full output IS the deliverable. Write the complete report inline as you go, with all six sections in full detail. Every word you output goes into the report.
4
4
5
5
## Phase 0 Override
6
6
@@ -14,21 +14,28 @@ Skip Phase 0 (ego-lint). It has already been run. Use these pre-computed results
14
14
15
15
{{ANNOTATIONS_SECTION}}
16
16
17
-
## Required Output Format
17
+
## Required Output
18
18
19
-
You MUST output ALL of these sections with full detail:
19
+
Write the FULL ego-review report with ALL sections below. Do NOT abbreviate or skip any section. If a section has no findings, write "None" under it — do not omit it.
20
+
21
+
Start your output with:
22
+
```
23
+
## EGO Review Report — {{NAME}}
24
+
```
25
+
26
+
Then include ALL of these sections:
20
27
21
28
### Section 1: Blocking Issues (Must Fix)
22
-
List each blocking issue with file:line, description, why reviewers reject it, and fix code.
29
+
Each issue: file:line, description, why reviewers reject it, fix code.
23
30
24
31
### Section 2: Justification Required
25
32
Items acceptable IF properly documented.
26
33
27
34
### Section 3: Advisory Issues (May Cause Questions)
28
-
Each with file:line, description, reviewer perspective, suggestion.
0 commit comments