agency-code-reviewer

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

Updated Jul 14, 2026
One-click install
npx skills add https://github.com/AI-Staffing-Solution-Consultants-LLC/core-engineering-system --skill agency-code-reviewer-ai-staffing-solution-consultants-llc
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: agency-code-reviewer
Source: https://github.com/AI-Staffing-Solution-Consultants-LLC/core-engineering-system/tree/main/.agents/skills/engineering-code-reviewer
Command: npx skills add https://github.com/AI-Staffing-Solution-Consultants-LLC/core-engineering-system --skill agency-code-reviewer-ai-staffing-solution-consultants-llc

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Code reviews often suffer from vague comments, inconsistent priorities, and nitpicking over style instead of substance. This Skill provides structured, constructive code reviews that focus on correctness, security, maintainability, and performance while teaching developers rather than just criticizing. ## Core Features & Use Cases - Prioritized Feedback: Every issue is marked as a blocker, suggestion, or nit so teams know what must be fixed before merging. - Security-Focused Analysis: Detects vulnerabilities such as SQL injection, XSS, auth bypass, race conditions, and missing input validation with specific line references. - Educational Review Style: Explains the reasoning behind each comment and suggests concrete fixes, helping developers improve their skills. - Use Case: A developer opens a pull request touching database queries. The reviewer flags a string-interpolated SQL query on line 42 as a blocker, explains the injection risk, and provides a parameterized query fix. ## Quick Start Review this pull request diff and give me prioritized feedback on security, correctness, 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 actionable feedback on a pull request?▼

Submit the code diff or files for review and receive comments organized by priority: blockers that must be fixed, suggestions that should be addressed, and optional nits. Each comment includes the specific line, the reasoning, and a concrete fix.

What security issues does a code review check for?▼

The review checks for SQL injection, XSS, authentication bypass, missing input validation, race conditions, deadlocks, and data loss risks. Each finding includes an explanation of the attack vector and a suggested remediation.

Can this review style and formatting issues?▼

Style issues are treated as low-priority nits, not blockers. The review deliberately focuses on correctness, security, maintainability, and performance rather than tabs versus spaces, especially when a linter already handles formatting.

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

Automated review cannot verify business logic intent, run the test suite, or assess architectural fit with systems it cannot see. Use it as a first-pass reviewer alongside human judgment for critical design decisions.