github-code-review

Orchestrates multi-agent code reviews on GitHub pull requests using swarm coordination.

Updated Mar 25, 2026
One-click install
npx skills add https://github.com/dmuhoro/EasyTutor --skill github-code-review-dmuhoro
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: github-code-review
Source: https://github.com/dmuhoro/EasyTutor/tree/main/archive/.claude/skills/github-code-review
Command: npx skills add https://github.com/dmuhoro/EasyTutor --skill github-code-review-dmuhoro

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Manual code reviews are slow, inconsistent, and often miss security, performance, or architectural issues. This Skill automates comprehensive pull request reviews by deploying specialized review agents that analyze code in parallel and post structured feedback directly to GitHub. ## Core Features & Use Cases - Specialized Review Agents: Deploy security, performance, architecture, style, and accessibility agents that each analyze the PR diff from their domain perspective. - PR Lifecycle Automation: Auto-trigger reviews on PR creation, post inline comments, apply labels, enforce quality gates, and enable auto-merge when checks pass. - Swarm Coordination: Select review topology (ring, mesh, hierarchical) based on PR size, spawn agents from PR labels, and coordinate reviews across multiple related PRs. - Use Case: A team opens a PR touching authentication code. The Skill automatically spawns security and architecture agents, blocks the merge on a critical vulnerability, posts a suggested fix as an inline comment, and adds a 'security-review-required' label. ## Quick Start Review pull request 123 with security, performance, and style agents and post the findings as PR comments.

Frequently Asked Questions about github-code-review

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

FAQPage Schema
How do I automate code reviews on GitHub pull requests?

Initialize a review swarm with npx ruv-swarm github review-init, passing the PR number, diff, and desired agents such as security, performance, and style. The agents analyze the PR in parallel and post findings as comments or formal reviews via the gh CLI.

What review agents are available for pull request analysis?

The skill provides security, performance, architecture, style, and accessibility agents. Security checks cover OWASP issues and secrets, performance covers complexity and query efficiency, and architecture validates SOLID principles and coupling metrics.

Can automated reviews block a pull request from merging?

Yes. Quality gates can be defined with thresholds such as no critical security issues or less than 5% performance regression. Combined with branch protection required status checks, failing gates block the merge.

Does this work with GitHub Actions CI/CD pipelines?

Yes. A workflow can trigger the swarm review on pull_request events, run it after build and test jobs, post review results with gh pr review, and update labels based on the findings.

Why are review agents not spawning for my pull request?

Check swarm status with npx ruv-swarm swarm-status and verify GitHub CLI authentication with gh auth status. If the swarm is stale, re-initialize it with the --force flag on the review-init command.