github-code-review

Coordinates multi-agent pull request reviews on GitHub using ruv-swarm and the gh CLI.

Updated Aug 18, 2026
One-click install
npx skills add https://github.com/wandreandrade2018-maker/claude-config --skill github-code-review-wandreandrade2018-maker
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: github-code-review
Source: https://github.com/wandreandrade2018-maker/claude-config/tree/main/.claude/skills/github-code-review
Command: npx skills add https://github.com/wandreandrade2018-maker/claude-config --skill github-code-review-wandreandrade2018-maker

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Manual pull request reviews are slow and inconsistent, often missing security vulnerabilities, performance regressions, or architectural issues. This Skill orchestrates specialized review agents that analyze PRs in parallel across security, performance, style, architecture, and accessibility domains, then posts structured feedback directly to GitHub. ## Core Features & Use Cases - Multi-Agent Review Swarms: Spawn specialized agents (security, performance, architecture, style, accessibility) that review a PR in parallel and post inline comments via the GitHub CLI. - Quality Gates & Automation: Define severity thresholds, required status checks, and CI/CD workflows that auto-review PRs on creation and block merges on critical findings. - PR Comment Commands & Custom Agents: Trigger swarm commands from PR comments (e.g., /swarm review) and register custom review agents with project-specific rules. - Use Case: A team opens a PR touching authentication code; the skill automatically runs a comprehensive security and architecture review, requests changes on critical findings, and labels the PR for security review. ## Quick Start Ask the assistant to 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 run an automated code review on a GitHub pull request?

Fetch the PR data and diff with the gh CLI, then run npx ruv-swarm github review-init with the PR number and a list of agents such as security, performance, and style. Results are posted back to the PR as comments or formal reviews.

What review agents are available for pull request analysis?

The skill provides specialized agents for security, performance, architecture, style and conventions, and accessibility. You can also register custom review agents implemented as JavaScript classes with project-specific rules.

Can I trigger code reviews automatically in GitHub Actions?

Yes. A workflow triggered on pull_request events can run npx ruv-swarm github review-all and post results with gh pr review. It can also approve, request changes, and update labels based on the review output.

How do I block a merge when a review finds critical security issues?

Configure quality gates with thresholds such as no-critical for security, and add required status checks like review-swarm/security in branch protection rules. The review agent can also request changes directly on the PR.

Why are review comments not posting to my pull request?

Check GitHub CLI authentication with gh auth status and verify the token has repository permissions. Also check API rate limits with gh api rate_limit, and use batch comment posting for large reviews.

What should I do when a review of a large PR takes too long?

Use incremental review mode, reduce the agent count to only the domains you need, and enable parallel processing with result caching. Topology selection also adapts automatically based on PR size.