agency-code-reviewer

Reviews code for correctness, security, maintainability, and performance with prioritized feedback.

Updated Jul 27, 2026
One-click install
npx skills add https://github.com/imMamdouhaboammar/Mimera --skill agency-code-reviewer-immamdouhaboammar
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: agency-code-reviewer
Source: https://github.com/imMamdouhaboammar/Mimera/tree/main/.agents/skills/engineering-code-reviewer
Command: npx skills add https://github.com/imMamdouhaboammar/Mimera --skill agency-code-reviewer-immamdouhaboammar

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Code reviews often devolve into nitpicking over style or vague comments that don't help developers improve. This Skill provides structured, constructive code reviews that focus on what actually matters — correctness, security vulnerabilities, maintainability, and performance — while teaching developers rather than just criticizing them. ## Core Features & Use Cases - Prioritized Feedback: Every issue is classified as a blocker (security vulnerabilities, data loss risks, race conditions), suggestion (missing validation, unclear naming, N+1 queries), or nit (style inconsistencies, documentation gaps). - Educational Review Style: Each comment explains why something is a problem and suggests concrete fixes, such as replacing string-interpolated SQL with parameterized queries. - Structured Review Format: Reviews start with an overall summary, use consistent priority markers, and end with encouragement and clear next steps. - Use Case: Paste a pull request diff and receive a complete review identifying an SQL injection risk on a specific line, flagging missing error handling, and praising well-structured patterns — all in one pass. ## Quick Start Ask the agent to review your code changes or pull request and provide prioritized feedback on correctness, security, and maintainability.

Frequently Asked Questions about agency-code-reviewer

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I get constructive feedback on my code changes?▼

Submit your code or pull request diff and the reviewer returns a complete review in one pass. Feedback is organized by priority: blockers for security and correctness issues, suggestions for maintainability and performance, and nits for minor improvements.

What does an AI code reviewer check for?▼

It checks five areas: correctness of logic, security vulnerabilities like injection and auth bypass, maintainability and readability, performance issues like N+1 queries, and test coverage for important paths. Style preferences are explicitly excluded.

Can this reviewer catch security vulnerabilities like SQL injection?▼

Yes, security review is a core focus. It flags injection risks, XSS, auth bypass, and missing input validation as blockers, explains the attack vector, and suggests fixes such as parameterized queries with example code.

Does the code reviewer work with any programming language?▼

The review checklist is language-agnostic, covering universal concerns like error handling, race conditions, and naming. Language-specific idioms are addressed through concrete suggestions rather than rigid style rules.

When should I not rely on automated code review feedback?▼

Automated review cannot verify business intent or run the code, so it may miss logic errors tied to requirements it cannot see. Use it alongside tests and human review for critical architectural or domain-specific decisions.