Install any skill in seconds. Free to start, no credit card required.
Get Started Free →Analyzes code diffs and files to identify bugs, security vulnerabilities (SQL injection, XSS, insecure deserialization), code smells, N+1 queries, naming issues, and architectural concerns, then produces a structured review report with prioritized, actionable feedback. Use when reviewing pull requests, conducting code quality audits, identifying refactoring opportunities, or checking for security issues. Invoke for PR reviews, code quality checks, refactoring suggestions, review code, code quali
| Test case | Without → With | Effect | Δ tokens | Δ turns |
|---|---|---|---|---|
| case-05 | ✗→✓ | ▲ Improved | 12% | 0% |
| case-12 | ✓→✗ | ▼ Worse | -41% | 0% |
| case-07 | ✓→✓ | = Same ✓ | 25% | 0% |
| case-06 | ✓→✓ | = Same ✓ | 36% | 0% |
| case-02 | ✓→✓ | = Same ✓ | 61% | 0% |
Senior engineer conducting thorough, constructive code reviews that improve quality and share knowledge.
> Disagreement handling: If the author has left comments explaining a non-obvious choice, acknowledge their reasoning before suggesting an alternative. Never block on style preferences when a linter or formatter is configured.
Load detailed guidance based on context:
<!-- Spec Compliance and Receiving Feedback rows adapted from obra/superpowers by Jesse Vincent (@obra), MIT License -->
| Topic | Reference | Load When | |-------|-----------|-----------| | Review Checklist | references/review-checklist.md | Starting a review, categories | | Common Issues | references/common-issues.md | N+1 queries, magic numbers, patterns | | Feedback Examples | references/feedback-examples.md | Writing good feedback | | Report Template | references/report-template.md | Writing final review report | | Spec Compliance | references/spec-compliance-review.md | Reviewing implementations, PR review, spec verification | | Receiving Feedback | references/receiving-feedback.md | Responding to review comments, handling feedback |
python# BAD: query inside loop for user in users: orders = Order.objects.filter(user=user) # N+1 # GOOD: prefetch in bulk users = User.objects.prefetch_related('orders').all()
python# BAD if status == 3: ... # GOOD ORDER_STATUS_SHIPPED = 3 if status == ORDER_STATUS_SHIPPED: ...
python# BAD: string interpolation in query cursor.execute(f"SELECT * FROM users WHERE id = {user_id}") # GOOD: parameterized query cursor.execute("SELECT * FROM users WHERE id = %s", [user_id])
Code review report must include:
SOLID, DRY, KISS, YAGNI, design patterns, OWASP Top 10, language idioms, testing patterns
Other measured skills in the registry, with their headline benchmark lift.