github-code-review

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

Updated Jul 17, 2026
One-click install
npx skills add https://github.com/unnxt30/skills --skill github-code-review-unnxt30
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: github-code-review
Source: https://github.com/unnxt30/skills/tree/main/github-code-review
Command: npx skills add https://github.com/unnxt30/skills --skill github-code-review-unnxt30

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill requires github-cli, ruv-swarm, claude-flow.

What problem does it solve? Manual code reviews are slow, inconsistent, and often miss security, performance, or architecture 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 - Multi-Agent Review System: Deploys specialized agents for security, performance, architecture, style, and accessibility analysis on a single PR. - PR-Based Swarm Management: Creates review swarms from PR data, auto-assigns agents based on labels, and selects topology by PR size. - Quality Gates & Automation: Enforces merge-blocking thresholds, integrates with GitHub Actions CI/CD, and supports comment commands like /swarm review. - Use Case: When a developer opens a PR touching authentication code, the Skill automatically spawns security and architecture agents, posts inline review comments, requests changes on critical findings, and adds labels like security-review. ## Quick Start Ask the AI to initialize a multi-agent review for pull request 123 with security, performance, and style agents, then post the findings as a PR review comment.

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 GitHub 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. Each agent focuses on its domain, such as OWASP vulnerability checks for security or Big O complexity analysis for performance.

Can I trigger swarm reviews from GitHub Actions CI/CD?

Yes, a workflow file can run the review swarm on pull_request events using the GitHub CLI for authentication. The workflow posts review results, approves or requests changes, and updates labels based on findings.

How do I block a merge when security issues are found?

Configure quality gates with a security threshold of no-critical and add required status checks like review-swarm/security in branch protection rules. Critical findings trigger a request-changes review that blocks merging.

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.

Can I create custom review agents for my own coding standards?

Yes, write a JavaScript class implementing a review method that returns issues with severity, file, line, and suggestion fields. Register it with npx ruv-swarm github register-agent to include it in future reviews.