🎁 Get the FREE AI Skills Starter Guide β€” Subscribe β†’
BytesAgainBytesAgain
πŸ¦€ ClawHub

Code Review Expert

by @banxian87

Multi-agent code review system using Manager-Worker pattern. Provides comprehensive code analysis from syntax, logic, security, and performance perspectives.

πŸ’‘ Examples

Basic Review

const reviewer = new CodeReviewExpert();

const code = function getUser(userId) { const users = db.query('SELECT * FROM users'); const user = users.find(u => u.id === userId); return user.name; } ;

const report = await reviewer.review(code); console.log(report);

Advanced Options

const reviewer = new CodeReviewExpert({
  languages: ['javascript', 'typescript'],
  strictMode: true,  // More rigorous checks
  autoFix: false,    // Auto-generate fixes
  verbose: true
});

const report = await reviewer.review(code, { focus: ['security', 'performance'], // Specific areas maxIssues: 10 // Limit issues });


View on ClawHub
TERMINAL
clawhub install code-review-expert

πŸ§ͺ Use this skill with your agent

Most visitors already have an agent. Pick your environment, install or copy the workflow, then run the smoke-test prompt above.

πŸ” Can't find the right skill?

Search 60,000+ AI agent skills β€” free, no login needed.

Search Skills β†’