github-code-review

Coordinates multi-agent code reviews on GitHub pull requests using ruv-swarm and gh CLI.

1|1|Updated Nov 28, 2025
One-click install
npx skills add https://github.com/33may/robotics --skill github-code-review-33may
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: github-code-review
Source: https://github.com/33may/robotics/tree/main/humanoid/.claude/skills/github-code-review
Command: npx skills add https://github.com/33may/robotics --skill github-code-review-33may

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 different quality dimensions in parallel. ## Core Features & Use Cases - Specialized Review Agents: Deploy security, performance, architecture, style, and accessibility agents that each analyze the PR diff for domain-specific issues. - PR-Based Swarm Management: Initialize review swarms from PR data, auto-assign agents based on labels, and select swarm topology based on PR size. - CI/CD and Automation: Integrate reviews into GitHub Actions workflows, trigger reviews via PR comment commands, enforce quality gates, and auto-fix common issues. - Use Case: When a developer opens a PR touching authentication code, the Skill automatically runs a deep security review, posts inline comments with suggested fixes, and blocks the merge if critical vulnerabilities are found. ## Quick Start Review pull request 123 by initializing a review swarm with security, performance, and style agents, then 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, data, diff, and a list of agents such as security, performance, and style. Results can be posted back as PR comments or reviews.

What review agents are available for pull request analysis?

Available agents include security, performance, architecture, style, and accessibility reviewers. Each focuses on its domain, such as OWASP vulnerability checks for security or Big O and query efficiency analysis for performance.

Can I trigger code reviews from GitHub Actions or PR comments?

Yes. A GitHub Actions workflow can run the review swarm on pull_request events, and a webhook handler can execute swarm commands posted as PR comments starting with /swarm. Both approaches use the gh CLI for authentication and posting results.

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. The review can also request changes and add labels when critical findings appear.

Why is my pull request review taking too long?

Large PRs with many agents slow down analysis. Use incremental review mode, reduce the agent count with --max-agents, or enable parallel processing with result caching to speed up the review.