Install
openclaw skills install automated-code-reviewerAutomated 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.
openclaw skills install automated-code-reviewerAutomated code review system for AI agents. Analyze pull requests, detect bugs, enforce coding standards, and provide actionable improvement suggestions.
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.
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.
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.
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.
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.
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.
{
"review": {
"severity": "medium",
"categories": ["bugs", "security", "performance", "style"],
"autoApprove": ["docs-only", "formatting"],
"requireApproval": ["security", "breaking-change"],
"languageRules": {
"javascript": "airbnb",
"python": "pep8",
"go": "effective-go"
}
}
}