Review code for quality, security, and maintainability. Use after code changes are completed and ready for review.
Scanned 2/12/2026
Install via CLI
openskills install majiayu000/claude-skill-registry---
name: code-reviewing
description: Review code for quality, security, and maintainability. Use after code changes are completed and ready for review.
---
# Code Review
Review code for quality, security, and maintainability.
## When to Use This Skill
Use this skill:
- After code changes are completed and ready for review
- Before staging changes for commit
- As a proactive quality check during development
## Context
When invoked, examine:
- Current git status: `git status`
- Current git diff (staged and unstaged changes): `git diff --no-ext-diff HEAD`
- Current branch: `git branch --show-current`
- Recent commits: `git log --oneline -40`
## Review Checklist
Examine all modified files and check:
- **NO DUPLICATED CODE!** - Extract common logic into reusable functions
- **Functions 30 lines or shorter** - Break down complex functions
- **Well-named functions and variables** - Clear, descriptive names
- **Simple and readable code** - Avoid unnecessary complexity
- **Proper error handling** - Handle edge cases and failures gracefully
- **No exposed secrets or API keys** - Use environment variables or config
- **Input validation implemented** - Validate all external inputs
- **Good test coverage** - Tests for critical paths
- **Performance considerations** - No obvious O(n²) or worse patterns
## Feedback Organization
Provide feedback organized by priority:
1. **Critical issues (MUST FIX)**: Security vulnerabilities, bugs, broken functionality
2. **Warnings (SHOULD FIX)**: Code quality, maintainability concerns
3. **Suggestions (CONSIDER)**: Improvements that would be nice to have
For each issue, include:
- Specific location (file, line number)
- Description of the problem
- Example of how to fix it
## Output
Provide a structured review:
```
## Critical Issues
- [File:line] Description of issue
- How to fix: ...
## Warnings
- [File:line] Description of concern
- Suggestion: ...
## Suggestions
- [File:line] Nice-to-have improvement
```
If no issues found: "Code review passed. No issues identified."
No comments yet. Be the first to comment!
Use this skill when developing or maintaining browser extension code in the `browser/` directory, including Chrome/Firefox/Edge compatibility, content scripts, background scripts, or i18n updates.
SEO optimization with keyword analysis, readability assessment, technical validation, content quality. Use for search rankings, blog posts, content audits, or encountering keyword density, readability scores, meta tags, schema markup errors.
Python backend development expertise for FastAPI, security patterns, database operations, Upstash integrations, and code quality. Use when: (1) Building REST APIs with FastAPI, (2) Implementing JWT/OAuth2 authentication, (3) Setting up SQLAlchemy/async databases, (4) Integrating Redis/Upstash caching, (5) Refactoring AI-generated Python code (deslopification), (6) Designing API patterns, or (7) Optimizing backend performance.
Drive the full internationalization journey for a project — detect the stack, recommend a library, set up the chosen library, wrap existing strings, and optionally connect a translation platform. Use when the user asks to add or configure i18n, internationalization, localization, multi-language support, or translations — including when they explicitly mention LinguiJS, Lingui, next-intl, "wrap strings", "find hardcoded text", "make my app translatable", or "set up translations". Triggers on g...
PTES-aligned adversarial security audit for backend, frontend, and mobile applications. Produces a CVSS-scored Hacker Report with verified PoCs and phased remediation.