code-review

Generates language- and framework-specific code review checklists organized by risk priority.

1|Updated Mar 21, 2026
One-click install
npx skills add https://github.com/kalilurrahman/kr-claudiator-skills-original-prompts --skill code-review-kalilurrahman
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: code-review
Source: https://github.com/kalilurrahman/kr-claudiator-skills-original-prompts/tree/main/01-software-dev/code-review
Command: npx skills add https://github.com/kalilurrahman/kr-claudiator-skills-original-prompts --skill code-review-kalilurrahman

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Generic code review advice leads to inconsistent reviews that miss critical issues like SQL injection, N+1 queries, or broken migrations. This Skill produces a targeted, actionable checklist tailored to the language, framework, and change type of each pull request. ## Core Features & Use Cases - Context-Aware Checklists: Parses language, framework, and change type (feature, bug fix, refactor, performance) to generate only relevant checks, such as React hook dependencies or Django ORM query optimization. - Risk-Prioritized Output: Groups items into Critical, High, Medium, and Low tiers, with dedicated sections for high-risk changes like database migrations, payments, and authentication. - Use Case: A reviewer facing a Django PR that adds a payment endpoint can generate a checklist covering idempotency keys, DECIMAL currency handling, CSRF protection, and migration reversibility instead of relying on memory. ## Quick Start Ask the AI to generate a code review checklist for a Python Django pull request that adds a new payment endpoint with a database migration.

Frequently Asked Questions about code-review

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

FAQPage Schema
How do I create a code review checklist for a pull request?

Provide the language, framework, and change type (new feature, bug fix, refactor, or performance), and the checklist is generated with items grouped by Critical, High, Medium, and Low priority. High-risk changes like migrations or payments get dedicated sections.

What should a code review checklist include for security?

Security checks should cover SQL injection via parameterized queries, XSS escaping of user input, authentication on new endpoints, CSRF tokens on mutating requests, and prevention of sensitive data exposure in logs or error messages.

Does the checklist support framework-specific reviews like React or Django?

Yes. React checklists cover hook dependency arrays, stable list keys, and useMemo usage, while Django checklists cover N+1 query prevention with select_related, model clean() validation, and migration dependencies.

What extra checks apply when reviewing database migrations?

Migration reviews verify reversibility with a down migration, testing on staging data, CONCURRENTLY index creation in PostgreSQL, backfill scripts for large tables, and documented duration estimates.

How many items should a code review checklist have?

The checklist is capped at 40 items to avoid noise. Irrelevant items should be skipped with a note explaining why, and reviewers can add custom items for issues not covered by the generated list.