code-review-and-quality

Reviews code changes across correctness, readability, architecture, security, and performance axes before merge.

3|Updated Jul 28, 2026
One-click install
npx skills add https://github.com/marcmarti9/agentit --skill code-review-and-quality-marcmarti9
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: code-review-and-quality
Source: https://github.com/marcmarti9/agentit/tree/main/skills/code-review-and-quality
Command: npx skills add https://github.com/marcmarti9/agentit --skill code-review-and-quality-marcmarti9

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Code merged without structured review accumulates defects, security vulnerabilities, and architectural debt. This Skill enforces a consistent multi-axis review process so every change is evaluated against the same quality gates before entering the main branch. ## Core Features & Use Cases - Five-Axis Review: Evaluates every change for correctness, readability, architecture, security, and performance with concrete checklists per axis. - Severity-Labeled Feedback: Categorizes findings as Critical, Required, Nit, Optional, or FYI so authors know what must be addressed before merge. - Change Sizing and Splitting: Provides thresholds for reviewable change sizes and strategies (stacking, horizontal, vertical) for splitting oversized PRs. - Use Case: Before merging a pull request, run the review checklist to verify tests cover the change, no injection vulnerabilities exist, the diff stays within a healthy size, and the verification story is documented. ## Quick Start Review this pull request across correctness, readability, architecture, security, and performance, and label each finding by severity.

Frequently Asked Questions about code-review-and-quality

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

FAQPage Schema
How do I review a pull request before merging?▼

Review a pull request by first understanding its intent, then checking tests, then walking the implementation across five axes: correctness, readability, architecture, security, and performance. Label every finding by severity so the author knows what blocks merge.

What should a code review checklist include?▼

A code review checklist should cover correctness against the spec, edge case and error handling, test coverage, naming and simplicity, architectural fit, input validation and secrets handling, and performance issues like N+1 queries or missing pagination.

How large should a pull request be for effective review?▼

A pull request around 100 changed lines is reviewable in one sitting, 300 lines is acceptable for a single logical change, and 1000 lines should be split. Split oversized changes by stacking, file groups, horizontal layers, or vertical feature slices.

How do I review dependency upgrades safely?▼

Review dependency upgrades by reading the changelog rather than trusting semver, upgrading one dependency per change, verifying a green test suite before and after, and reviewing the lockfile diff for unexpected transitive changes.

When should a code review request changes instead of approving?▼

Request changes when Critical or Required findings exist, such as security vulnerabilities, broken functionality, or missing regression tests. Approve when the change improves overall code health even if imperfect, and never accept deferred cleanup promises.