github-code-review

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

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

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 - Multi-Agent Review System: Deploys specialized agents for security, performance, architecture, style, and accessibility analysis on a single PR. - Automated PR Management: Posts review comments, inline annotations, labels, and approval or change-request decisions via the GitHub CLI. - Quality Gates & CI/CD Integration: Enforces configurable thresholds (security severity, performance regression, coverage) as required status checks in GitHub Actions workflows. - Use Case: When a developer opens a PR touching authentication code, the Skill automatically spawns security and architecture agents, blocks the merge on critical findings, and posts suggested fixes as inline comments. ## 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 automate code review on GitHub pull requests?▼

Initialize a review swarm with the GitHub CLI by passing the PR number, diff, and desired agents such as security, performance, and style. The swarm analyzes the changes in parallel and posts findings as review comments or change requests on the PR.

How to run a security-focused review on a pull request?▼

Run the security review agent against the PR's changed files to check for OWASP issues, exposed secrets, and dependency vulnerabilities. Critical findings trigger a request-changes review and a security label, while minor issues are posted as comments.

Can I integrate automated PR review into GitHub Actions?▼

Yes, a workflow triggered on pull_request events can run the review swarm after build and test jobs. The workflow posts review results, updates labels, and can approve or request changes based on the swarm output.

What tools are required to run multi-agent code reviews?▼

The workflow requires the GitHub CLI (gh) for PR data and comment operations, plus ruv-swarm for agent orchestration. Both must be installed and authenticated with a token scoped to the target repository.

Why are review agents not spawning for my pull request?▼

Check swarm status and verify GitHub CLI authentication with gh auth status, then re-initialize the review with the force flag. Slow reviews on large PRs can be fixed with incremental mode, fewer agents, or parallel processing with caching.