differential-review — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited differential-review (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.
Reviews code changes through a security lens: git diffs, PRs, staged changes, or explicit file deltas. Scales automatically to change size.
git diff, gh pr, or a set of changed filesbackend-code-reviewThese are shortcuts that compromise findings. Reject them explicitly:
Determine what changed and assign risk before diving in.
git diff HEAD~1 --stat # overview of files changed
git diff HEAD~1 # full diff
gh pr view --json files # if reviewing a PRClassify scope:
| Size | Files changed |
|---|---|
| SMALL | < 20 |
| MEDIUM | 20–200 |
| LARGE | 200+ |
Risk tier per file:
| Tier | File types / patterns |
|---|---|
| HIGH | auth, crypto, session, config/env, external API calls, payment, validation removal, permissions |
| MEDIUM | business logic, state mutations, new public APIs, DB queries |
| LOW | comments, tests, UI, logging, docs |
For every HIGH/MEDIUM file:
git blame <file> on modified lines — trace historyImmediate escalation flags:
Count callers of every modified function using Grep:
| Callers | Blast Radius |
|---|---|
| 1–5 | LOW |
| 6–20 | MEDIUM |
| 21–50 | HIGH |
| 50+ | CRITICAL |
CRITICAL blast radius + HIGH-risk change = immediate top-priority finding.
For files/functions with HIGH or CRITICAL risk:
See methodology.md for line-by-line analysis technique.
For every HIGH finding, construct:
See adversarial.md for full framework.
Generate structured markdown report. Template in reporting.md.
Mandatory sections:
Before delivering the report, verify:
file:line reference| File | Purpose |
|---|---|
| methodology.md | Detailed per-phase analysis techniques |
| adversarial.md | Attack modeling framework |
| reporting.md | Report templates |
| patterns.md | Vulnerability patterns by category |
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.