code-review-and-quality

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

5|Updated Feb 12, 2026
One-click install
npx skills add https://github.com/PHenrique07/Sementis-IFSP-Pirituba --skill code-review-and-quality-phenrique07
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: code-review-and-quality
Source: https://github.com/PHenrique07/Sementis-IFSP-Pirituba/tree/main/.github/skills/code-review-and-quality
Command: npx skills add https://github.com/PHenrique07/Sementis-IFSP-Pirituba --skill code-review-and-quality-phenrique07

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 blocks merge versus what is a suggestion. - Change Sizing and Splitting Guidance: Defines thresholds for reviewable change sizes and provides stacking, horizontal, and vertical splitting strategies for oversized PRs. - Use Case: Before merging a pull request, run the review checklist to verify tests cover the change, no secrets or injection risks exist, the diff stays within a healthy size, and the change description stands alone in version control history. ## 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 and verify the author's testing story before approving.

What should a code review checklist include?▼

A code review checklist should cover correctness against the spec, edge case and error handling, clear naming, architectural fit, input validation, secrets hygiene, injection risks, N+1 query patterns, and confirmation that tests and builds pass.

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, requiring 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 issues exist, such as security vulnerabilities, data loss, or broken functionality, or when Required findings are unresolved. Approve when the change improves overall code health even if it is not perfect.

Why is reviewing AI-generated code important?▼

AI-generated code needs more scrutiny, not less, because it is confident and plausible even when wrong. Review it across all five axes, verify tests actually test behavior, and never rubber-stamp with an unexamined approval.