github-code-review

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

Updated May 11, 2026
One-click install
npx skills add https://github.com/Turgunoff/mebellar_app --skill github-code-review-turgunoff
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: github-code-review
Source: https://github.com/Turgunoff/mebellar_app/tree/main/.agents/skills/github-code-review
Command: npx skills add https://github.com/Turgunoff/mebellar_app --skill github-code-review-turgunoff

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Manual pull request reviews are slow, inconsistent, and often miss security, performance, or architecture issues. This Skill orchestrates specialized review agents that analyze a PR in parallel and post structured findings directly to GitHub. ## Core Features & Use Cases - Specialized Review Agents: Run dedicated agents for security, performance, architecture, style, and accessibility checks against a PR's diff and changed files. - PR-Native Automation: Trigger reviews from GitHub Actions workflows, PR comment commands like /swarm review, or webhook handlers, with results posted as inline comments, labels, and review decisions. - Quality Gates & Metrics: Define thresholds (e.g., block on critical security issues, warn on performance regressions) and track review metrics over time. - Use Case: When a developer opens a PR touching authentication code, the workflow automatically spawns security and architecture agents, requests changes on critical findings, and labels the PR security-review-required. ## Quick Start Review pull request 123 with security, performance, and style agents and 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 gh pr view and gh pr diff, then pass them to 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 with gh pr review or gh pr comment.

What review agents are available for pull request analysis?▼

The skill defines specialized agents for security, performance, architecture, style and convention, and accessibility. You can also register custom review agents written in JavaScript for project-specific rules like API versioning checks.

Can I trigger code reviews from GitHub Actions workflows?▼

Yes. A workflow triggered on pull_request events can authenticate the gh CLI, run npx ruv-swarm github review-all with the PR number, and post the output as a review. It can also approve or request changes based on the review output.

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

Configure quality gates with a security threshold of no-critical and add required status checks like review-swarm/security in branch protection rules. The workflow can request changes and add a security-review-required label when critical findings appear.

Why are review comments not posting to my pull request?▼

Check gh auth status to confirm the token has repository permissions and verify API rate limits with gh api rate_limit. For large reviews, use batch comment posting via npx ruv-swarm github review-comments --batch.

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

Use incremental review mode, reduce the agent set to essentials like security and style, and enable parallel processing with result caching. The skill also selects swarm topology based on PR size to keep reviews efficient.