code-review

Identify architecture and testing quality issues in JavaScript/TypeScript codebases.

1|Updated Jan 24, 2026
One-click install
npx skills add https://github.com/Hunt-Gather-Create/_R1 --skill code-review-hunt-gather-create
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: code-review
Source: https://github.com/Hunt-Gather-Create/_R1/tree/main/.claude/skills/code-review
Command: npx skills add https://github.com/Hunt-Gather-Create/_R1 --skill code-review-hunt-gather-create

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

This skill helps engineers identify architectural inefficiencies, repeated patterns, and gaps in test coverage, enabling targeted improvements and safer refactors.

Core Features & Use Cases

  • Detect DRY violations across files and suggest central utilities.
  • Identify prop drilling paths and provide coupling-reduction recommendations.
  • Review hooks and context usage with guidance to extract logic into custom hooks or providers.
  • Assess test coverage and propose improvements to tests and structure.
  • Use case: run on a feature branch to surface maintainability risks before merging.

Quick Start

Provide a focused code review for the latest changes in the repository.

Frequently Asked Questions about code-review

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

FAQPage Schema
How do I find DRY violations and repeated patterns in a JavaScript codebase?

Use an automated code review to detect DRY violations by scanning for repeated patterns across files, then refactor them into central utilities to improve code maintainability and reduce duplication.

What is prop drilling in React and how can I identify it in my project?

Prop drilling occurs when data is passed through multiple component layers. Automated code review identifies these prop drilling paths and provides coupling-reduction recommendations by extracting logic into context.

How do I review React hooks and context usage for architectural quality?

Run an automated code-quality review that evaluates architectural inefficiencies in hooks and context usage, guiding you to extract logic into custom hooks or providers for better code structure.

Does automated code review work on TypeScript projects to assess test coverage?

Yes, automated code review works on JavaScript and TypeScript projects to assess test coverage gaps across changed files, proposing improvements to test structure before merging a feature branch.

When should I run an automated code-quality review on my feature branch?

Run an automated code-quality review on a feature branch before merging to surface maintainability risks like DRY violations and test coverage gaps, enabling targeted improvements for safer refactors.