MR
Mayur Rathi
@mayurrathi
⭐ 40.7k GitHub stars

Requesting Code Review

Requesting Code Review is an code AI skill with a core value of Use when completing tasks, implementing major features, or before merging to verify work meets requirements. It helps developers solve real-world problems in the code domain, boosting efficiency, automating repetitive tasks, and optimizing workflows.

Use when completing tasks, implementing major features, or before merging to verify work meets requirements

Last verified on: 2026-07-07

Quick Facts

Category code
Works With Claude
Source sickn33/antigravity-awesome-skills
Stars ⭐ 40.7k
Last Verified 2026-07-07
Risk Level Low
mkdir -p ./skills/requesting-code-review && curl -sfL https://raw.githubusercontent.com/sickn33/antigravity-awesome-skills/main/skills/requesting-code-review/SKILL.md -o ./skills/requesting-code-review/SKILL.md

Run in terminal / PowerShell. Requires curl (Unix) or PowerShell 5+ (Windows).

Skill Content

# Requesting Code Review


Dispatch superpowers:code-reviewer subagent to catch issues before they cascade.


**Core principle:** Review early, review often.


When to Request Review


**Mandatory:**

- After each task in subagent-driven development

- After completing major feature

- Before merge to main


**Optional but valuable:**

- When stuck (fresh perspective)

- Before refactoring (baseline check)

- After fixing complex bug


How to Request


**1. Get git SHAs:**

bash
BASE_SHA=$(git rev-parse HEAD~1)  # or origin/main
HEAD_SHA=$(git rev-parse HEAD)

**2. Dispatch code-reviewer subagent:**


Use Task tool with superpowers:code-reviewer type, fill template at `code-reviewer.md`


**Placeholders:**

- `{WHAT_WAS_IMPLEMENTED}` - What you just built

- `{PLAN_OR_REQUIREMENTS}` - What it should do

- `{BASE_SHA}` - Starting commit

- `{HEAD_SHA}` - Ending commit

- `{DESCRIPTION}` - Brief summary


**3. Act on feedback:**

- Fix Critical issues immediately

- Fix Important issues before proceeding

- Note Minor issues for later

- Push back if reviewer is wrong (with reasoning)


Example


text
[Just completed Task 2: Add verification function]

You: Let me request code review before proceeding.

BASE_SHA=$(git log --oneline | grep "Task 1" | head -1 | awk '{print $1}')
HEAD_SHA=$(git rev-parse HEAD)

[Dispatch superpowers:code-reviewer subagent]
  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

[Subagent returns]:
  Strengths: Clean architecture, real tests
  Issues:
    Important: Missing progress indicators
    Minor: Magic number (100) for reporting interval
  Assessment: Ready to proceed

You: [Fix progress indicators]
[Continue to Task 3]

Integration with Workflows


**Subagent-Driven Development:**

- Review after EACH task

- Catch issues before they compound

- Fix before moving to next task


**Executing Plans:**

- Review after each batch (3 tasks)

- Get feedback, apply, continue


**Ad-Hoc Development:**

- Review before merge

- Review when stuck


Red Flags


**Never:**

- Skip review because "it's simple"

- Ignore Critical issues

- Proceed with unfixed Important issues

- Argue with valid technical feedback


**If reviewer wrong:**

- Push back with technical reasoning

- Show code/tests that prove it works

- Request clarification


See template at: requesting-code-review/code-reviewer.md


When to Use

This skill is applicable to execute the workflow or actions described in the overview.

🎯 Best For

  • Engineering teams doing code reviews
  • Open source maintainers
  • UI designers
  • Product designers
  • Claude users

💡 Use Cases

  • Reviewing pull requests for security vulnerabilities
  • Checking code style consistency
  • Generating component mockups
  • Creating design system tokens

📖 How to Use This Skill

  1. 1

    Install the Skill

    Copy the install command from the Terminal tab and run it. The SKILL.md file downloads to your local skills directory.

  2. 2

    Load into Your AI Assistant

    Open Claude and reference the skill. Paste the SKILL.md content or use the system prompt tab.

  3. 3

    Apply Requesting Code Review to Your Work

    Open your project in the AI assistant and ask it to apply the skill. Start with a small module to verify the output quality.

  4. 4

    Review and Refine

    Review AI suggestions before committing. Run tests, check for regressions, and iterate on the skill output.

❓ Frequently Asked Questions

Does this skill check for OWASP Top 10?

Security-focused review skills often include OWASP checks. Check the skill content for specific vulnerability categories covered.

Does this work with Figma?

Some design skills integrate with Figma plugins. Check the Works With section for supported tools.

Is Requesting Code Review compatible with Cursor and VS Code?

Yes — this skill works with any AI coding assistant including Cursor, VS Code with Copilot, and JetBrains IDEs.

Do I need specific dependencies for Requesting Code Review?

Check the install command and Works With section. Most code skills only require the AI assistant and your codebase.

How do I install Requesting Code Review?

Copy the install command from the Terminal tab and run it. The skill downloads to ./skills/requesting-code-review/SKILL.md, ready to use.

⚠️ Common Mistakes to Avoid

Blindly accepting AI suggestions

Always verify AI-generated review comments. Some suggestions may not apply to your specific codebase conventions.

Skipping usability testing

AI-generated designs should be validated with real users before development.

Skipping validation

Always test AI-generated code changes, even for simple refactors.

Missing dependency updates

Check if the skill requires updated dependencies or new packages.

🔗 Related Skills