skillfed

review-swarm

Review Swarm runs four specialized read-only agents in parallel to examine a git diff or file scope for behavioral regressions, security risks, performance issues, and coverage gaps. The main agent then filters and ranks findings by severity, delivering only high-signal issues with a clear fix path—no file edits or automated fixes applied.

Review Swarm finds high-signal bugs, security risks, and regressions in git diffs by running four parallel read-only reviewers and filtering results by severity.

AI-generated summary based on this skill's SKILL.md

3,861 204 MIT updated by Dimillian

Install

Dimillian/Skills/review-swarm · repository language: Shell

git clone https://github.com/Dimillian/Skills
cp -r Skills/review-swarm ~/.claude/skills/review-swarm
npx skillfed install Dimillian/Skills/review-swarm

Frequently asked questions

AI-generated answers based on this skill's SKILL.md and metadata

What does review-swarm do with my git diff before merge?

Review Swarm examines your git diff or file scope using four specialized read-only agents running in parallel to find high-signal bugs, security risks, regressions, and coverage gaps. A main agent then filters and ranks findings by severity, delivering only the issues that matter most with a clear fix path—no automated edits are applied.

How does review-swarm run parallel code review of staged changes?

Review Swarm deploys four specialized agents simultaneously—one for behavioral regressions, one for security risks, one for performance issues, and one for test coverage gaps. Each agent analyzes your staged changes independently, then the main agent consolidates their findings into a prioritized list ranked by severity.

Can review-swarm check current changes for regressions?

Yes. Review Swarm includes a dedicated behavioral agent that scans your diff for regressions, contract mismatches, and backward-compatibility fallout. It runs in parallel with security, performance, and coverage agents to catch breaking changes before merge.

What security and performance review does review-swarm provide?

Review Swarm runs specialized security and performance agents on your diff. The security agent flags vulnerabilities and privacy risks; the performance agent detects leaks, reliability risks, and operational brittleness. Both feed into a prioritized fix path ranked by signal strength.

Does review-swarm edit files or apply automated fixes?

No. Review Swarm is read-only. It identifies and ranks high-signal issues with a clear fix path, but does not modify files or apply automated fixes. You retain full control over remediation decisions.

What scope can review-swarm analyze—just staged changes?

Review Swarm can analyze staged changes, explicit file scope, or a full git diff. You choose the scope, and the four parallel agents examine it for behavioral regressions, security risks, performance issues, and coverage gaps within that boundary.

SKILL.md

rendered from the published skill — quoted content, verbatim

Review Swarm

Review a diff with four read-only sub-agents in parallel, then have the main agent filter, order, and summarize only the issues that matter. This skill is review-only: sub-agents do not edit files, and the main agent does not apply fixes as part of this workflow.

Step 1: Determine Scope and Intent

Prefer this scope order:

  1. Files or paths explicitly named by the user
  2. Current git changes
  3. An explicit branch, commit, or PR diff requested by the user
  4. Most recently modified tracked files, only if the user asked for a review and there is no clearer diff

If there is no clear review scope, stop and say so briefly.

When using git changes, choose the smallest correct diff command:

  • unstaged work: git diff
  • staged

(truncated - see the full file via the links below)

Read as markdown · JSON record · Browse the source repository

File tree — 2 files
review-swarm/SKILL.md
review-swarm/agents/openai.yaml

Related skills

Tags

multi-agent-review regression-detection pre-merge-validation parallel-analysis issue-prioritization behavioral-verification risk-assessment coverage-gaps contract-validation read-only-audit