code-review-checklist

vudovn/antigravity-kit · updated Apr 8, 2026

$npx skills add https://github.com/vudovn/antigravity-kit --skill code-review-checklist
0 commentsdiscussion
summary

code-review-checklist

skill.md

Code Review Checklist

Quick Review Checklist

Correctness

  • Code does what it's supposed to do
  • Edge cases handled
  • Error handling in place
  • No obvious bugs

Security

  • Input validated and sanitized
  • No SQL/NoSQL injection vulnerabilities
  • No XSS or CSRF vulnerabilities
  • No hardcoded secrets or sensitive credentials
  • AI-Specific: Protection against Prompt Injection (if applicable)
  • AI-Specific: Outputs are sanitized before being used in critical sinks

Performance

  • No N+1 queries
  • No unnecessary loops
  • Appropriate caching
  • Bundle size impact considered

Code Quality

  • Clear naming
  • DRY - no duplicate code
  • SOLID principles followed
  • Appropriate abstraction level

Testing

  • Unit tests for new code
  • Edge cases tested
  • Tests readable and maintainable

Documentation

  • Complex logic commented
  • Public APIs documented
  • README updated if needed

AI & LLM Review Patterns (2025)

Logic & Hallucinations

  • Chain of Thought: Does the logic follow a verifiable path?
  • Edge Cases: Did the AI account for empty states, timeouts, and partial failures?
  • External State: Is the code making safe assumptions about file systems or networks?

Prompt Engineering Review

// ❌ Vague prompt in code
const response = await ai.generate(userInput);

// ✅ Structured & Safe prompt
const response = await ai.generate({
  system: "You are a specialized parser...",
  input: sanitize(userInput),
  schema: ResponseSchema
});

Anti-Patterns to Flag

// ❌ Magic numbers
if (status === 3) { ... }

// ✅ Named constants
if (status === Status.ACTIVE) { ... }

// ❌ Deep nesting
if (a) { if (b) { if (c) { ... } } }

// ✅ Early returns
if (!a) return;
if (!b) return;
if (!c) return;
// do work

// ❌ Long functions (100+ lines)
// ✅ Small, focused functions

// ❌ any type
const data: any = ...

// ✅ Proper types
const data: UserData = ...

Review Comments Guide

// Blocking issues use 🔴
🔴 BLOCKING: SQL injection vulnerability here

// Important suggestions use 🟡
🟡 SUGGESTION: Consider using useMemo for performance

// Minor nits use 🟢
🟢 NIT: Prefer const over let for immutable variable

// Questions use ❓
❓ QUESTION: What happens if user is null here?

Discussion

Product Hunt–style comments (not star reviews)
  • No comments yet — start the thread.
general reviews

Ratings

4.862 reviews
  • Nikhil Zhang· Dec 28, 2024

    Useful defaults in code-review-checklist — fewer surprises than typical one-off scripts, and it plays nicely with `npx skills` flows.

  • Hiroshi Menon· Dec 20, 2024

    I recommend code-review-checklist for anyone iterating fast on agent tooling; clear intent and a small, reviewable surface area.

  • Olivia Singh· Dec 12, 2024

    code-review-checklist fits our agent workflows well — practical, well scoped, and easy to wire into existing repos.

  • Anika Okafor· Dec 12, 2024

    code-review-checklist reduced setup friction for our internal harness; good balance of opinion and flexibility.

  • Ganesh Mohane· Dec 8, 2024

    Registry listing for code-review-checklist matched our evaluation — installs cleanly and behaves as described in the markdown.

  • Shikha Mishra· Dec 4, 2024

    code-review-checklist is among the better-maintained entries we tried; worth keeping pinned for repeat workflows.

  • Li Martin· Dec 4, 2024

    code-review-checklist is among the better-maintained entries we tried; worth keeping pinned for repeat workflows.

  • Sakshi Patil· Nov 27, 2024

    code-review-checklist reduced setup friction for our internal harness; good balance of opinion and flexibility.

  • Nikhil Johnson· Nov 15, 2024

    code-review-checklist is among the better-maintained entries we tried; worth keeping pinned for repeat workflows.

  • Amina Anderson· Nov 11, 2024

    code-review-checklist fits our agent workflows well — practical, well scoped, and easy to wire into existing repos.

showing 1-10 of 62

1 / 7