code-review

Solid

Multi-agent code review with learning feedback loop — reviews PRs using parallel specialized agents (style, logic, security) with confidence scoring and false-positive reduction

Code & Development 48 stars 3 forks Updated today MIT

Install

View on GitHub

Quality Score: 81/100

Stars 20%
56
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
50
License 10%
100
Description 5%
100

Skill Content

# Multi-Agent Code Review Run a multi-agent code review on the current branch's PR. Three specialized agents (style, logic, security) review in parallel, findings are confidence-scored, and dismissed findings feed back into the evolution system as negative examples for future reviews. ## Prerequisites - **Git** — must be in a git repository - **GitHub CLI** — `gh` authenticated - Current branch must have an open PR ## Instructions When the user asks for a code review or triggers this skill: ### Step 1: Validate environment ```bash git rev-parse --is-inside-work-tree # Must be in a repo gh auth status # Must be authenticated ``` Get the current branch and find the open PR: ```bash BRANCH=$(git branch --show-current) gh pr list --head "$BRANCH" --state open --json number,title,baseRefName ``` If no PR exists, ask the user if they want to create one first. Do NOT proceed without a PR. ### Step 2: Check eligibility Skip review if: - PR is a draft (`gh pr view <number> --json isDraft`) - PR has zero code changes (only docs/config) - This exact commit SHA was already reviewed (check `resources/review-history.log` if it exists) ### Step 3: Gather context Collect all inputs the review agents will need: ```bash # Get the unified diff gh pr diff <number> # Get file list and stats gh pr view <number> --json files,additions,deletions # Get PR description for intent context gh pr view <number> --json body ``` Also load: 1. **CLAUDE.md files** from...

Details

Author
sliamh11
Repository
sliamh11/Deus
Created
4 months ago
Last Updated
today
Language
Python
License
MIT

Similar Skills

Semantically similar based on skill content — not just same category