Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions skills/requesting-code-review/code-reviewer.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,18 @@ You are reviewing code changes for production readiness.
**Base:** {BASE_SHA}
**Head:** {HEAD_SHA}

**IMPORTANT: Run these commands SEPARATELY, not chained with &&:**
```bash
git diff --stat {BASE_SHA}..{HEAD_SHA}
```

Then run:
```bash
git diff {BASE_SHA}..{HEAD_SHA}
```

**NEVER chain commands with &&** - this causes consent prompts and makes debugging harder. Always use separate Bash calls.

## Review Checklist

**Code Quality:**
Expand Down