code-review

Reviews pull requests and code changes for bugs and convention violations using multi-agent detection.

507|40|Updated Apr 26, 2026
One-click install
npx skills add https://github.com/waybarrios/opencode-power-pack --skill code-review-waybarrios
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: code-review
Source: https://github.com/waybarrios/opencode-power-pack/tree/main/skills/code-review
Command: npx skills add https://github.com/waybarrios/opencode-power-pack --skill code-review-waybarrios

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Manual code review often misses subtle bugs, concurrency issues, and convention violations, and informal reviews rarely track whether every file was actually checked. This Skill runs a structured, confidence-filtered review of a frozen change set so findings are actionable and incomplete coverage is reported instead of hidden. ## Core Features & Use Cases - Scoped Review Modes: Review a GitHub PR, an explicit commit range or path list, or all pending local changes, with pinned commits and frozen diff snapshots. - Multi-Agent Detection: Dispatch parallel detection roles covering convention compliance, diff-only bugs, deep-context data flow, concurrency, error handling, and test coverage. - Validation and Gating: Cross-check every candidate adversarially, require confidence of at least 80 with a concrete reachable failure, and never emit a clean result when coverage is incomplete. - Idempotent GitHub Posting: Optionally post findings as inline PR comments using markers tied to the pinned head SHA, avoiding duplicates on re-runs. - Use Case: Before merging a feature branch, ask for a review of the open PR; the Skill pins the base and head commits, scans every changed file, and reports only validated Critical or Important findings with reproduction steps. ## Quick Start Use the code-review skill to review pull request number 42 and report any validated bugs or convention violations.

Frequently Asked Questions about code-review

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I review a GitHub pull request for bugs automatically?▼

Provide the PR URL or number and the review pins the base and head commits, diffs the merge base, and runs parallel detection roles for bugs, concurrency, error handling, and conventions. Only findings with confidence of 80 or higher and a concrete reproduction are reported.

How to review uncommitted local changes before pushing?▼

Run the review without a PR or range argument to select local mode, which diffs HEAD against the working tree including staged, unstaged, deleted, renamed, and untracked files. The change set is frozen with content hashes before analysis begins.

Does the code review post comments to GitHub automatically?▼

Posting only happens when explicitly requested and requires PR scope. Comments use markers tied to the repository, PR, and pinned head SHA, so repeated runs update existing comments instead of creating duplicates.

What happens if part of the review fails or times out?▼

Failed or malformed detection work is retried once or completed locally, and the review reports incomplete coverage rather than a clean result. A clean no-issues verdict requires every detection role and candidate to reach a final state.

Can the review enforce project-specific coding conventions?▼

Yes, it discovers AGENTS.md and CLAUDE.md rule files at the repository root and along changed paths, then maps applicable rules to each file. Violations are flagged only when the specific rule can be quoted.