review

Coordinate code review execution for local changes, branches, and GitHub pull requests.

3|Updated Apr 18, 2026
One-click install
npx skills add https://github.com/garochee33/DSH --skill review-garochee33
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: review
Source: https://github.com/garochee33/DSH/tree/main/agents/grok/bundled/skills/review
Command: npx skills add https://github.com/garochee33/DSH --skill review-garochee33

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

This Skill coordinates a structured code review workflow for local changes, branches, and GitHub pull requests, helping you catch bugs and quality issues before merge.

Core Features & Use Cases

  • Local change review: Reviews staged, unstaged, and untracked work in the current repository and saves both findings and a summary to disk.
  • Branch and PR review: Compares a named branch to its merge base or fetches PR metadata and diffs for a targeted review.
  • GitHub PR submission: Parses reviewer output and posts inline comments as a pending review when the findings target valid right-side diff lines.
  • Guardrails and cleanup: Validates inputs, handles empty diffs, checks auth, and preserves review artifacts when posting fails.

Quick Start

Ask the review skill to review my current changes and save the findings.

Frequently Asked Questions about review

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I run a code review on local git diff changes before committing?

You can review local changes by asking the Skill to inspect staged, unstaged, and untracked git diffs. It validates repository state, parses findings, and saves the review summary with detailed results to disk.

Can I submit code review findings as inline comments on a GitHub PR?

Yes, the Skill parses reviewer output and posts inline comments as a pending GitHub PR review. It targets valid right-side diff lines and uses GitHub CLI authentication to submit the findings directly.

Do I need GitHub CLI authentication to review pull requests?

Yes, GitHub CLI authentication is required. The Skill needs it to fetch PR metadata, retrieve branch diffs, and post pending reviews with inline comments back to the GitHub repository.

What happens if a GitHub PR review submission fails during comment posting?

If posting fails, the Skill preserves your review artifacts on disk. It handles empty diffs gracefully and ensures no findings are lost during the cleanup process, allowing you to retry the submission.

What is the best way to review a specific git branch compared to its merge base?

Target the named branch directly. The Skill compares it to its merge base, fetches the diff, and coordinates a structured code review to catch bugs and quality issues before merging.