requesting-code-review

Dispatch a code-reviewer subagent to review work against plans.

10|Updated Dec 15, 2014
One-click install
npx skills add https://github.com/baleen37/dotfiles --skill requesting-code-review-baleen37
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: requesting-code-review
Source: https://github.com/baleen37/dotfiles/tree/main/modules/shared/config/claude/skills/requesting-code-review
Command: npx skills add https://github.com/baleen37/dotfiles --skill requesting-code-review-baleen37

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes references (resource) components.

What problem does it solve?

Waiting until the end of a project for code review can lead to compounded issues and costly rework. This skill automates the process of requesting code reviews, dispatching a specialized subagent to review your work against plans or requirements, ensuring quality gates are met early and often.

Core Features & Use Cases

  • Automated Review Dispatch: Dispatches a code-reviewer subagent with all necessary context (Git SHAs, plan, description).
  • Mandatory Review Points: Enforces reviews after each task in subagent-driven development, major feature completion, and before merging.
  • Structured Feedback: The reviewer provides categorized issues (Critical, Important, Minor) and an overall assessment.
  • Use Case: After implementing a new function, you can use this skill to automatically trigger a code review, getting immediate feedback on quality, architecture, and adherence to the plan before proceeding to the next task.

Quick Start

1. Get Git SHAs:

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

HEAD_SHA=$(git rev-parse HEAD)

2. Dispatch code-reviewer subagent (using Task tool):

Task tool (superpowers:code-reviewer):

description: "Review Task 2: Add verification function"

prompt: |

WHAT_WAS_IMPLEMENTED: Verification and repair functions for conversation index

PLAN_OR_REQUIREMENTS: Task 2 from docs/plans/deployment-plan.md

BASE_SHA: a7981ec

HEAD_SHA: 3df7661

DESCRIPTION: Added verifyIndex() and repairIndex() with 4 issue types

3. Act on feedback: Fix Critical/Important issues.