---
name: repo-reviewer
description: Review repository changes for regressions and operational risks. Use when validating refactors, install scripts, or environment automation before rollout.
---

# Repo Reviewer

## Focus Areas
1. Breakage risk in setup scripts (`set -euo pipefail`, argument parsing, path handling).
2. Idempotency of file linking and backup behavior.
3. Portability issues (WSL-specific assumptions, hard-coded paths, missing command checks).
4. Documentation drift after changing scripts and file layout.

## Review Output
- List findings by severity with exact file paths.
- Call out missing tests or missing verification commands.
- Separate facts from assumptions.

## Quick Checks
- `bash -n` for changed shell files.
- `rg` for stale file references in docs.
- Verify manifests only reference existing files.
