at-review

Review code diffs and pull requests for bugs, regressions, and convention violations.

180|Updated Jul 7, 2026
One-click install
npx skills add https://github.com/kairyou/agent-tools --skill at-review-kairyou
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: at-review
Source: https://github.com/kairyou/agent-tools/tree/main/skills/workflow/at-review
Command: npx skills add https://github.com/kairyou/agent-tools --skill at-review-kairyou

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes references (resource) components.

What problem does it solve? Manual code review is slow and error-prone, and subtle bugs like removed guards, broken callers, or violated project conventions often slip through. This Skill runs a structured multi-angle review over your changes so real defects surface before they ship. ## Core Features & Use Cases - Multi-angle bug hunting: Runs eight independent finder angles covering line-by-line diff scans, removed-behavior auditing, cross-file caller tracing, reuse, simplification, efficiency, fix depth, and project convention checks. - Flexible review targets: Reviews staged changes, working-tree changes, commit ranges, branches, file paths, or hosted GitHub/GitLab/Gitee PR/MR URLs with read-only resolution. - Verified findings with optional fixes: Each candidate is verified as CONFIRMED, PLAUSIBLE, or REFUTED, producing a ranked report of at most 10 findings, with --fix to apply fixes directly to the working tree. - Use Case: Before merging a feature branch, run the review against your PR URL to catch a dropped error path and a violated rule from your repo's AGENTS.md, then apply the fixes automatically. ## Quick Start Ask the agent to review the current branch changes or a pull request URL, for example by invoking /at-review with a PR link or with --fix to also apply the suggested fixes.

Frequently Asked Questions about at-review

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

FAQPage Schema
How do I review a GitHub or GitLab pull request locally?▼

Pass the PR or MR URL as the review target. The skill resolves base and head commits read-only using an authenticated CLI like gh or glab, fetches missing commits into FETCH_HEAD, and reviews the diff without switching your working tree.

How do I review uncommitted or staged changes before committing?▼

Run the review with no target argument. It runs git diff against the upstream or HEAD and includes working-tree changes when uncommitted modifications exist, so pre-commit changes are fully in scope.

Can code review findings be applied automatically as fixes?▼

Yes, pass the --fix flag to apply findings directly to the working tree after the report. Fixes are skipped when they would change intended behavior, fall outside the reviewed diff, or appear to be false positives.

Does the review check project-specific coding conventions?▼

Yes, a dedicated conventions angle reads applicable AGENTS.md, CLAUDE.md, and CLAUDE.local.md files governing the changed files. Violations are only flagged when the exact rule and the breaking line can be quoted.

What happens when reviewing a private PR without access?▼

Resolution stops and the skill asks you to authenticate locally, fetch the review branch, or provide a base/head range or patch. A pasted private URL alone does not grant access, and no interactive login is initiated.