code-review (fork)
Thorough code review — checks correctness, security, performance, readability, and test coverage. Gives actionable feedback ranked by severity.
Signing
SignedSLSA L2- Signed by
- skills-hub.ai distributor
- Method
- Distributor-signed by skills-hub.aiCryptographically signed by the skills-hub.ai distributor key at publish time.
- Signed
Install this skill
Run this command in your terminal. No account required — it auto-detects your AI tool and installs the skill file.
npx @skills-hub-ai/cli install code-review-fork-4Setup by platform
Install
One-click setup for your editorRun in your project root
npx @skills-hub-ai/cli install code-review-fork-4 --target claude-codeExamples
Prompt
Please review the recent changes in the user authentication module for potential security issues and code quality.Output
[SEC] Missing input validation on login form; potential injection risk. Add server-side validation.
[READ] Variable naming inconsistent; rename `usr` to `user` for clarity.
[PERF] Repeated database calls inside loops; refactor to batch fetch users.
[TEST] No tests covering failed login attempts; add edge case tests.
Overall, improve input validation and reduce database calls for better security and performance.Prompt
Review the latest pull request with the new payment processing feature.Output
[CORRECTNESS] Payment amount not validated before processing; add validation to prevent negative or zero amounts.
[SEC] Sensitive API keys hardcoded in the codebase; move to environment variables.
[PERF] External API call made synchronously; convert to async with proper error handling.
[READABILITY] Function `processPayment` is too long; split into smaller, well-named functions.
[TEST] Missing tests for failed API responses; include mock failures to ensure robustness.
Address these issues to improve security, correctness, and maintainability.Instructions
Security
Reviews (0)
More Review skills
Browse category →Frequently asked questions about code-review (fork)
What does the code-review (fork) skill do?
Thorough code review — checks correctness, security, performance, readability, and test coverage. Gives actionable feedback ranked by severity. It's a reusable SKILL.md instruction set that loads into your AI coding assistant on demand, no prompt engineering, no copy-pasting every session.
How do I install the code-review (fork) skill?
Run `npx @skills-hub-ai/cli install code-review-fork-4` from your terminal. The CLI writes the SKILL.md to the correct location for your AI tool (e.g. ~/.claude/skills/code-review-fork-4/ for Claude Code or ~/.cursor/skills/ for Cursor with --target cursor) and adds it to your project's .skills.json lockfile.
Which AI tools does code-review (fork) work with?
code-review (fork) runs in Claude Code, Cursor, Codex CLI. It follows the open Agent Skills standard (SKILL.md), so the same skill works in every supported tool without modification.
Is the code-review (fork) skill free?
Yes. Every skill on skills-hub.ai is free and open-source. There are no premium tiers, paywalls, or usage limits. You only pay for whatever AI assistant you're already using.
How do I use code-review (fork) after installing it?
In Claude Code, type `/code-review-fork-4` (or whatever slash command the skill registers) and the AI follows the skill's instructions immediately. You can also reference it by name in natural language, your AI loads the skill into context when relevant.
Can I share the code-review (fork) skill with my team?
Yes. Commit your project's .skills.json lockfile and teammates run `npx @skills-hub-ai/cli install` (no args) to install every skill at the exact version you pinned. Organization-scoped installs work via skills-hub.ai organizations.