Agent Skills: Aura Frog Code Reviewer

Comprehensive code review with multi-agent analysis. Checks security, performance, maintainability, tests.

UncategorizedID: nguyenthienthanh/aura-frog/code-reviewer

Install this agent skill to your local

pnpm dlx add-skill https://github.com/nguyenthienthanh/aura-frog/tree/HEAD/aura-frog/skills/code-reviewer

Skill Files

Browse the full folder contents for code-reviewer.

Download Skill

Loading file tree…

aura-frog/skills/code-reviewer/SKILL.md

Skill Metadata

Name
code-reviewer
Description
"Comprehensive code review with multi-agent analysis. Checks security, performance, maintainability, tests."

Aura Frog Code Reviewer

Priority: HIGH - Use before merging code


When to Use

USE: After implementation, before merge, when requested


Review Process

1. Get Files to Review

git diff --name-only main...HEAD

2. Multi-Agent Review

| Agent | Checks | |-------|--------| | Security | OWASP Top 10, secrets, SQL injection, XSS | | Dev | KISS principle, structure, error handling | | QA | Coverage, test quality, edge cases | | Performance | Algorithms, memory, queries, bundle size |

3. Generate Report

## Code Review Report

### ✅ Passed Checks
- [List]

### ⚠️ Warnings
- [Non-blocking issues]

### ❌ Issues Found
- **[CRITICAL]** [Issue] at [file:line]
  - Fix: [recommendation]

### 📊 Metrics
- Coverage: X% (target: Y%)
- Files: N changed

4. Decision

  • ✅ APPROVED - No critical issues
  • ⚠️ APPROVED WITH COMMENTS - Minor issues
  • ❌ CHANGES REQUESTED - Critical issues

Quick Checklist

Security:

  • [ ] No hardcoded secrets
  • [ ] Input validation
  • [ ] Auth checks in place

Quality:

  • [ ] KISS principle
  • [ ] No duplication
  • [ ] Error handling
  • [ ] Follows conventions

Testing:

  • [ ] Coverage ≥ target
  • [ ] Critical paths tested
  • [ ] Edge cases covered

Performance:

  • [ ] No N+1 queries
  • [ ] Efficient algorithms
  • [ ] No memory leaks

Critical (Block Merge)

  • Hardcoded secrets
  • SQL injection / XSS
  • Coverage < target
  • Breaking changes without migration

Remember: Review improves code quality. Be constructive.