automated-code-reviewer

Automated code review for AI agents. Analyze pull requests, detect bugs, enforce coding standards, and suggest improvements. Triggers: code review, PR review, code quality, automated review, code analysis.

Safety Notice

This listing is from the official public ClawHub registry. Review SKILL.md and referenced scripts before running.

Copy this and send it to your AI assistant to learn

Install skill "automated-code-reviewer" with this command: npx skills add sky-lv/skylv-automated-code-reviewer

Code Review Automation

Automated code review system for AI agents. Analyze pull requests, detect bugs, enforce coding standards, and provide actionable improvement suggestions.

Overview

A comprehensive code review automation tool that helps agents perform thorough, consistent code reviews. Detects bugs, security vulnerabilities, style violations, and performance issues while providing contextual improvement suggestions.

Capabilities

1. Pull Request Analysis

node review.js analyze --pr 42 --repo owner/repo
node review.js analyze --diff HEAD~3 --full-context

Reviews the entire PR diff with full file context for accurate suggestions.

2. Bug Detection

node review.js detect-bugs --src ./src --severity medium+
node review.js detect-bugs --focus null-pointer,resource-leak,off-by-one

Identifies potential bugs including null pointers, resource leaks, race conditions, and off-by-one errors.

3. Standards Enforcement

node review.js lint --standard airbnb --fix-suggestions
node review.js lint --custom-rules .reviewrules.json

Enforces coding standards (Airbnb, Google, Custom) with auto-fix suggestions.

4. Security Scan

node review.js security --check owasp-top10
node review.js security --focus injection,xss,auth

Scans for OWASP Top 10 vulnerabilities, injection attacks, and authentication issues.

5. Performance Review

node review.js performance --detect n+1,mem-leak,slow-loop
node review.js performance --benchmark-compare base-branch

Identifies N+1 queries, memory leaks, and inefficient algorithms.

Configuration

{
  "review": {
    "severity": "medium",
    "categories": ["bugs", "security", "performance", "style"],
    "autoApprove": ["docs-only", "formatting"],
    "requireApproval": ["security", "breaking-change"],
    "languageRules": {
      "javascript": "airbnb",
      "python": "pep8",
      "go": "effective-go"
    }
  }
}

Use Cases

  • PR Gate: Automatically review every pull request before merge
  • Pre-commit Hook: Catch issues before they reach CI
  • Batch Review: Review multiple repositories for compliance
  • Onboarding: Help new developers learn coding standards
  • Security Audit: Periodic security-focused code reviews

Source Transparency

This detail page is rendered from real SKILL.md content. Trust labels are metadata-based hints, not a safety guarantee.

Related Skills

Related by shared tags or category signals.

Coding

PR Advocacy

Monitor PR status every 4 hours, promptly address feedback and CI issues, communicate clearly within 24 hours, and drive reviews to timely merge.

Registry SourceRecently Updated
4620Profile unavailable
Coding

OpenClaw Coding Agent Workflows

Delegate coding tasks to Codex, Claude Code, Pi, or OpenCode from bash with safe launch modes, background monitoring, and repo-isolated review workflows.

Registry SourceRecently Updated
1330Profile unavailable
Automation

Skill Review

Review an OpenClaw skill for token efficiency, scriptability, and clean action boundaries; back up first, then improve the skill.

Registry SourceRecently Updated
1530Profile unavailable
Automation

Prooflane MCP Skill

Clone, install, configure, and run Prooflane's repo-native MCP server locally for evaluation and verification without published package registry dependencies.

Registry SourceRecently Updated
1260Profile unavailable