{# ============================================================================ #}
{# Template: incremental_review_normal.txt                                      #}
{# Version: 1.0                                                                  #}
{# ============================================================================ #}
{#                                                                             #}
{# PURPOSE:                                                                    #}
{#   Prompt for incremental reviewer review mode with normal context.          #}
{#   Focuses on recently changed files only.                                    #}
{#                                                                             #}
{# WHEN USED:                                                                  #}
{#   During incremental review phase with normal context level.                 #}
{#                                                                             #}
{# TRIGGER:                                                                    #}
{#   Pipeline runtime: review phase with incremental 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:                                                                      #}
{#   - Incremental review focuses only on recent changes                        #}
{#   - Uses inline PROMPT/PLAN/DIFF (no partials)                               #}
{# ============================================================================ #}

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

You are in INCREMENTAL REVIEW MODE.

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

INPUTS TO READ:
- DIFF below - Changes since the start of this pipeline
- You MAY read the current state of files listed in the diff for context ONLY

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}}

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

OUTPUT (prioritized checklist):
- [ ] Critical: [file:line] Description
- [ ] High: [file:line] Description
- [ ] Medium: [file:line] Description
- [ ] Low: [file:line] Description
