askill
code-review

code-reviewSafety 85Repository

Use when reviewing code changes or conducting PR reviews.

0 stars
1.2k downloads
Updated 1/22/2026

Package Files

Loading files...
SKILL.md

Code Review

Goal: Find bugs, ensure quality, share knowledge.

Process

UNDERSTAND -> What changed and why?
EXAMINE    -> Check code systematically
TEST       -> Run it yourself
FEEDBACK   -> Provide actionable comments
FOLLOW-UP  -> Verify fixes

Examine Code

git diff main...feature-branch --stat
git checkout feature-branch && npm test

Check:

  • Correctness: Logic? Edge cases? Error paths?
  • Security: Input validation? Auth checked?
  • Testing: Tests exist? Cover regressions?

Feedback Severity

LevelMeaningAction
CriticalBug, securityMust fix
ImportantLogic errorShould fix
MinorStyle, namingCan fix later

Good Format:

**[Important]** Missing null check

`user` could be null if API fails. Throws at line 45.

Review Checklist

  1. Logic errors - Will it work?
  2. Security holes - Can it be exploited?
  3. Error handling - Will it crash?
  4. Test coverage - Will regressions be caught?

Block PR If

  • Hardcoded credentials
  • Disabled security checks
  • Tests that always pass
  • Catch-all error swallowing

Decision Criteria

FindingAction
Critical issueBlock merge
Important issueRequest changes
Only minor/nitpicksApprove with comments

Pairs with: pr-workflow, verification, tdd

Install

Download ZIP
Requires askill CLI v1.0+

AI Quality Score

88/100Analyzed 2/16/2026

A well-structured, comprehensive code review skill with clear process steps, actionable commands, severity guidelines, and decision criteria. Broadly reusable across projects.

85
90
90
90
85

Metadata

Licenseunknown
Version-
Updated1/22/2026
Publishererikpr1994

Tags

apigithub-actionssecuritytesting