{# ============================================================================ #}
{# Template: standard_review_minimal.txt                                        #}
{# Version: 1.0                                                                  #}
{# ============================================================================ #}
{#                                                                             #}
{# PURPOSE:                                                                    #}
{#   Guided review prompt with language-specific guidelines.                    #}
{#   Reviewer receives language-specific checks for the detected stack.         #}
{#                                                                             #}
{# WHEN USED:                                                                  #}
{#   During guided review phase with minimal context level.                     #}
{#                                                                             #}
{# TRIGGER:                                                                    #}
{#   Pipeline runtime: review phase with guided reviewer and minimal context    #}
{#   CLI: --reviewer guided --context minimal                                   #}
{#                                                                             #}
{# VARIABLES:                                                                  #}
{#   PROMPT    - Original user request from PROMPT.md (required)                #}
{#   PLAN      - Implementation plan from PLAN.md (required)                   #}
{#   DIFF      - Git diff content to review (required)                          #}
{#   GUIDELINES - Language-specific guidelines (injected by reviewer)           #}
{#                                                                             #}
{# NOTES:                                                                      #}
{#   - GUIDELINES variable is injected at runtime based on detected language     #}
{#   - Uses inline PROMPT/PLAN/DIFF (no partials)                               #}
{# ============================================================================ #}

*** CLOSED BOOK REVIEW - NO ACCESS TO REPOSITORY ***

You are in REVIEW MODE with fresh eyes perspective.

CRITICAL: You have NO access to the repository. Do NOT attempt to read files or explore.

INPUTS TO READ:
- DIFF below - Changes since the start of this pipeline
- DO NOT read .agent/STATUS.md or .agent/NOTES.md

YOUR TASK:
Review ONLY the changes in the DIFF below. Do NOT explore the repository, read other files, or run any commands.

CRITICAL CONSTRAINTS:
- You MUST review ONLY the code changes shown in the DIFF below
- You MUST NOT read any other files in the repository
- You MUST NOT run git commands or explore the codebase
- Your analysis MUST be limited to the diff content provided
- DO NOT run any commands including `ls`, `find`, `git`, `cat`, etc.

Then apply these language-specific checks:

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

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

Language-Specific checks (Optional Reference - Do NOT explore beyond the diff):
{{GUIDELINES}}

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

OUTPUT (prioritized checklist with [file:line]):
- [ ] 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 "No issues found."
