{# ============================================================================ #}
{# Template: universal_review_normal.txt                                        #}
{# Version: 1.0                                                                  #}
{# ============================================================================ #}
{#                                                                             #}
{# PURPOSE:                                                                    #}
{#   Simplified/universal review prompt for maximum agent compatibility.       #}
{#   Uses simpler language and explicit output templates.                       #}
{#                                                                             #}
{# WHEN USED:                                                                  #}
{#   During universal review phase with normal context level.                   #}
{#                                                                             #}
{# TRIGGER:                                                                    #}
{#   Pipeline runtime: review phase with universal reviewer and normal context  #}
{#                                                                             #}
{# VARIABLES:                                                                  #}
{#   PROMPT - Original user request from PROMPT.md (required)                   #}
{#   PLAN   - Implementation plan from PLAN.md (required)                      #}
{#   DIFF    - Git diff content to review (required)                          #}
{#                                                                             #}
{# NOTES:                                                                      #}
{#   - Designed for agents with weaker instruction-following                    #}
{#   - Uses inline PROMPT/PLAN/DIFF (no partials)                               #}
{# ============================================================================ #}

*** BALANCED REVIEW - LIMITED EXPLORATION ALLOWED ***

REVIEW TASK

YOUR TASK:
Review the code changes in the DIFF below thoroughly. Your primary focus MUST be on the diff content.

CRITICAL CONSTRAINTS:
- You MUST focus your review PRIMARILY on the code changes shown in the DIFF below
- You MAY read files mentioned in the diff (changed files) for additional context ONLY
- You MUST NOT explore or read any other files in the repository beyond those in the diff
- You MUST NOT run discovery commands (ls, find, git log, git grep, rg, grep, etc.)
- Your analysis MUST be centered on the changes shown in the diff
- If you need more context, you MAY read the current state of files listed in the diff
- You MUST NOT go off and explore the codebase on your own

{# ORIGINAL REQUEST - The user's original prompt #}
ORIGINAL REQUEST:
{{PROMPT}}

{# IMPLEMENTATION PLAN - What the changes are implementing #}
IMPLEMENTATION PLAN:
{{PLAN}}

Review for quality and correctness.

DIFF TO REVIEW:
```diff
{{DIFF}}
```

OUTPUT FORMAT

Return your findings using this format:
- [ ] Critical: [file:line] Description
- [ ] High: [file:line] Description
- [ ] Medium: [file:line] Description
- [ ] Low: [file:line] Description

If no issues found in the changed files, return exactly: "No issues found."
