agentcheck-code-review

Identify code quality and security defects in local repositories before pull requests.

2|Updated Sep 13, 2025
One-click install
npx skills add https://github.com/s977043/river-reviewer --skill agentcheck-code-review
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: agentcheck-code-review
Source: https://github.com/s977043/river-reviewer/tree/main/skills/agent-skills/agentcheck-code-review
Command: npx skills add https://github.com/s977043/river-reviewer --skill agentcheck-code-review

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes references (resource) components.

What problem does it solve?

Runs AgentCheck-style static reviews locally to pre-screen PR quality and adherence to rules.

Core Features & Use Cases

  • Local index and scan: load rules and index repository files.
  • Severity-guided outputs: categorize issues by critical/major/minor/info with fixes.
  • Quick Start: run pre-PR scan on the current branch.

Quick Start

Initialize AgentCheck context and run the local scan on the repository, then map results to River Reviewer output schema.

Frequently Asked Questions about agentcheck-code-review

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

FAQPage Schema
How do I run a pre-PR code review locally before pushing?

Pre-PR code review scans your local repository for quality and security defects using AgentCheck rules before pull requests. Load your AgentCheck configuration, index repository files, and generate severity-classified issues mapped to standard reviewer output format for self-screening.

What's the difference between static linting and AgentCheck-style review?

Static linting flags syntax and style violations; AgentCheck-style review goes deeper to detect code quality and security defects, classify them by severity (critical/major/minor/info), and prioritize high-impact files, providing actionable fix guidance beyond lint rules.

Can I validate my codebase against AgentCheck rules locally?

Yes. AgentCheck-style local review loads rule sets, indexes your repository, and runs static analysis to validate code adherence before CI, letting you catch defects early and test AgentCheck behavior on your branch without waiting for pipeline runs.

How do I set up a local code review scan on my current branch?

Initialize AgentCheck context with your configuration and rule sets, point the scan to your repository, run the indexing and analysis, then output results in standard reviewer schema format with file:line comments and severity labels for quick interpretation.

What file types and languages does AgentCheck-style review cover?

AgentCheck-style review analyzes repository files according to configured rule sets and prioritizes broad-impact files. Supported languages and formats depend on your AgentCheck rule configuration; the local scan indexes and processes all files your rules define.

Do I need CI pipeline setup to run pre-PR code review?

No. Pre-PR code review runs entirely locally on your branch without CI dependency, letting you self-screen code quality and security before pull requests and validate AgentCheck behavior on demand in your development environment.