code-review-and-quality

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

Updated Jul 10, 2026
One-click install
npx skills add https://github.com/CodeCrafterAdi2006/Ink-and-Code --skill code-review-and-quality-codecrafteradi2006
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: code-review-and-quality
Source: https://github.com/CodeCrafterAdi2006/Ink-and-Code/tree/main/Skills/code-review-and-quality
Command: npx skills add https://github.com/CodeCrafterAdi2006/Ink-and-Code --skill code-review-and-quality-codecrafteradi2006

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Code changes often reach the main branch without consistent scrutiny, letting bugs, security vulnerabilities, and architectural drift accumulate. This Skill enforces a structured, multi-axis review process so every change is evaluated against the same quality gates before merging. ## Core Features & Use Cases - Five-Axis Review: Evaluates every change across correctness, readability, architecture, security, and performance with concrete checklists for each dimension. - Severity-Labeled Feedback: Categorizes findings as Critical, Required, Nit, Optional, or FYI so authors know exactly what must be addressed before merge. - Change Sizing and Splitting Guidance: Defines thresholds for reviewable change sizes and provides stacking, horizontal, and vertical splitting strategies for oversized changes. - Use Case: Before merging a pull request that adds a new API endpoint, run this review to verify tests cover edge cases, inputs are validated at boundaries, no N+1 queries exist, 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 with its 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 with a severity such as Critical, Required, Nit, or Optional so the author knows what must change.

What should a code review checklist include?

A code review checklist should cover correctness against the spec, edge case and error handling, test adequacy, naming and readability, architectural fit, input validation and secret handling, and performance risks like N+1 queries. It should end with a verification step confirming tests pass and the build succeeds.

How large should a pull request be for effective review?

A pull request of around 100 changed lines is ideal and reviewable in one sitting, while 300 lines is acceptable for a single logical change. Changes near 1000 lines should be split using stacking, file-group, horizontal, or vertical splitting strategies.

When should a code review request changes instead of approving?

Request changes when there are Critical issues like security vulnerabilities, data loss, or broken functionality, or unresolved Required findings. Approve when the change improves overall code health even if imperfect, since the standard is continuous improvement rather than perfection.

Does AI-generated code need the same review as human code?

AI-generated code needs more scrutiny, not less, because it is confident and plausible even when wrong. Apply the same five-axis review, verify tests actually test behavior, and never rubber-stamp with an unexamined approval.