code-review-assistant — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited code-review-assistant (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.
Before reviewing, determine:
If reviewing a PR, ask for the diff or file list. If a single file, ask for the surrounding context (what calls it, what it calls).
Check for these categories in order of severity:
Critical:
High:
Medium:
Look for:
Evaluate each principle:
| Principle | Red Flag |
|---|---|
| Single Responsibility | Class has multiple reasons to change |
| Open/Closed | Modifying existing code instead of extending |
| Liskov Substitution | Subclass breaks parent contract |
| Interface Segregation | Forcing implementation of unused methods |
| Dependency Inversion | High-level module depends on concrete class |
Only flag violations that cause real maintainability problems, not theoretical ones.
Check for:
Format findings as:
## Code Review Summary
**Risk Level:** Critical | High | Medium | Low
### Findings
#### [Category] Finding Title
- **Location:** file:line
- **Severity:** Critical | High | Medium | Low
- **Issue:** What is wrong
- **Impact:** What could happen
- **Fix:** Concrete suggestion with code
### Positive Observations
- List things done well (always include at least one)
### Recommendations
1. Prioritized action itemsSTOP after producing the summary. Ask if the user wants deeper analysis on any specific finding.
User says: "Review this Python function"
def get_user(user_id):
query = f"SELECT * FROM users WHERE id = {user_id}"
result = db.execute(query)
return resultResponse:
db.execute("SELECT id, name, email FROM users WHERE id = ?", [user_id])~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.