Claude Skill MartBrowse skillsQuick linesLearn by videoTerminal guideWhat is a Skill?
← Back to list

Code Reviewing

A skill that reviews code against quality, security, performance, and maintainability checklists and returns a severity-ranked report.

Security & ReviewBeginner★ 1,122⑂ 397AI score 7/10Last updated: Jul 23, 2026

What it does

  • Walks a four-part checklist: code quality, security, performance, maintainability.
  • Scans for common security issues such as hardcoded secrets, SQL injection, XSS, and missing auth checks.
  • Produces a fixed Markdown report: summary → issues (Critical/Major/Minor with line numbers) → strengths → prioritized recommendations → verdict.
  • Limited to Read, Grep, and Glob, so it reviews read-only and never edits your files.

Who it's for

  • Developers on small teams who review their own pull requests
  • Tech leads who want consistent review comment structure across the team
  • Juniors building a pre-commit self-review habit

Examples

  1. "Review the files changed on this branch" → severity-grouped issue list plus a verdict.
  2. "Check src/auth/login.ts from a security angle" → focuses on secrets, input validation, and authorization.
  3. "Is this function well written?" → feedback on naming, duplication, and single responsibility with concrete fixes.

· · · Install guide · · ·

Try it now, no install

Paste this into Claude to use the skill without installing anything.

Read the instructions in this file and follow them to help me:
https://raw.githubusercontent.com/huangjia2019/claude-code-engineering/HEAD/04-Skills/projects/00-basic-skill/.claude/skills/code-reviewing/SKILL.md

What I want: (describe your task here)

If Claude can't open the link, open it yourself and paste the contents instead.

↓ If it works for you, download the ZIP below and install it. Then it runs on its own — no pasting each time.

Install in the Claude app (no terminal)
  1. Download the ZIP with the button below.
  2. In Claude, open Settings → Capabilities and turn on 'Code execution and file creation'. (one time)
  3. Go to Customize → Skills → + → 'Upload a skill' and upload the ZIP.
↓ Download ZIP
Install in Claude Code

Let Claude do it — paste this into Claude Code

Install the skill I found on Claude Skill Mart.
Copy the 04-Skills/projects/00-basic-skill/.claude/skills/code-reviewing folder from the GitHub repo huangjia2019/claude-code-engineering into my ~/.claude/skills/code-reviewing/.
When it's done, tell me in one line what this skill can do.

Install with a command instead

git clone https://github.com/huangjia2019/claude-code-engineering.git && mkdir -p ~/.claude/skills && cp -r claude-code-engineering/04-Skills/projects/00-basic-skill/.claude/skills/code-reviewing ~/.claude/skills/

⚠ This is a third-party skill. Check the source repository before installing.

  1. Open a terminal.
  2. Clone the repo: git clone https://github.com/huangjia2019/claude-code-engineering.git
  3. Create the skills folder: mkdir -p ~/.claude/skills
  4. Copy the skill: cp -r claude-code-engineering/04-Skills/projects/00-basic-skill/.claude/skills/code-reviewing ~/.claude/skills/
  5. Restart Claude Code and ask "review my code" — the skill activates automatically.
  6. For project-only use, copy it into that project's .claude/skills directory instead.