code-reviewer — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited code-reviewer (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
A comprehensive code review skill that analyzes code quality, security, performance, and best practices.
Invoke this skill when:
/review, /code-review, /pr-review1. Identify the language/framework
2. Understand the purpose of the code
3. Check for existing patterns in the codebase
4. Review any related testsUse the checklist at checklist.md to perform a thorough review.
| Severity | Description | Action Required |
|---|---|---|
| Critical | Security vulnerabilities, data loss risks | Must fix before merge |
| High | Bugs, significant performance issues | Should fix before merge |
| Medium | Code quality issues, minor bugs | Consider fixing |
| Low | Style issues, minor improvements | Optional |
| Info | Suggestions, alternative approaches | For consideration |
For each issue found:
**[SEVERITY] Issue Title**
- File: `path/to/file.ts:line`
- Problem: Clear description of the issue
- Impact: What could go wrong
- Fix: Specific code suggestion or approach# Code Review Summary
## Overview
- Files reviewed: X
- Issues found: Y (X Critical, Y High, Z Medium)
- Recommendation: [Approve / Request Changes / Needs Discussion]
## Critical Issues
[List critical issues with fixes]
## High Priority
[List high priority issues]
## Medium Priority
[List medium priority issues]
## Low Priority & Suggestions
[List minor issues and improvements]
## Positive Observations
[Highlight good practices found]
## Summary
[Brief summary and next steps]# Review staged changes
git diff --cached | claude review
# Review specific commit
git show <commit> | claude review
# Review PR (with gh cli)
gh pr diff <number> | claude reviewThe skill can integrate with:
Create .claude/review-config.json to customize:
{
"severity_threshold": "medium",
"ignore_patterns": ["*.test.ts", "*.spec.ts"],
"focus_areas": ["security", "performance"],
"custom_rules": [],
"max_file_size": 1000
}User: Review this function for issues
function getData() {
var data = fetch('/api/data')
return data
}Response: Found 3 issues:
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.