requesting-code-review

Automate code review of git commits against specified requirements and standards.

Updated May 30, 2026
One-click install
npx skills add https://github.com/InnerScopeHearing/otchealth-claude-tools --skill requesting-code-review-innerscopehearing
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: requesting-code-review
Source: https://github.com/InnerScopeHearing/otchealth-claude-tools/tree/main/skills/requesting-code-review
Command: npx skills add https://github.com/InnerScopeHearing/otchealth-claude-tools --skill requesting-code-review-innerscopehearing

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes scripts (resource) and references (resource) components.

What problem does it solve?

This Skill streamlines the code review process, enabling developers to verify their work against requirements and standards before merging or proceeding to the next task.

Core Features & Use Cases

  • Automated Code Review: Dispatches a dedicated code reviewer subagent to analyze commits and changes.
  • Contextual Review: Provides reviewers with specific context, focusing on the work product rather than the thought process.
  • Task-based Reviews: Supports mandatory reviews after tasks, major features, and merges, as well as optional reviews at various development stages.
  • Feedback Loop: Offers structured feedback and recommendations for improvements.

Quick Start

To request a code review, run the following commands:

BASE_SHA=$(git rev-parse HEAD~1)
HEAD_SHA=$(git rev-parse HEAD)

Then, dispatch the code reviewer subagent using the template provided at code-reviewer.md.

Frequently Asked Questions about requesting-code-review

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

FAQPage Schema
How do I automate code reviews for git commits?

You can automate code review by dispatching a dedicated subagent to analyze your git commits and changes against specified requirements. The process requires a git repository with commits to review and provides structured feedback for improvements.

What is contextual code review and how does it work?

Contextual code review focuses the automated reviewer on the specific work product rather than the development thought process. It provides reviewers with targeted context to evaluate commits against standards and requirements, ensuring thorough and timely feedback.

How do I request a code review using git commit hashes?

To request a code review, run `BASE_SHA=$(git rev-parse HEAD~1)` and `HEAD_SHA=$(git rev-parse HEAD)` to capture your commit range. Then, dispatch the code reviewer subagent using the provided template to analyze the changes.

When do I need an automated code review in my development workflow?

Automated code review is needed for mandatory checks after tasks, major features, and merges. It verifies your work against requirements and standards before proceeding to the next task, ensuring code quality throughout the development workflow.

Can I use automated code review for optional development stages?

Yes, automated code review supports optional reviews at various development stages in addition to mandatory checks. This allows developers to verify their work against standards and requirements whenever needed during the development workflow.

Does automated code review work without a git repository?

No, automated code review requires a git repository with commits to review. The process analyzes commits and changes against specified requirements and standards to provide structured feedback and recommendations for improvements.