review-performance — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited review-performance (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.
Is it fast?
Measure. Don't guess.
# Profile before you optimize
node --prof app.js// Time operations
const start = Date.now()
doThing()
console.log(Date.now() - start)| Check | Target |
|---|---|
| API < 200ms | |
| Page < 1s | |
| Build < 30s |
# Check size
curl -s -o /dev/null -w "%{size_download}" URL| Size | Rating |
|---|---|
| > 1MB | SLOW |
| > 500KB | MEDIUM |
| < 100KB | FAST |
// N+1 query?
items.map(i => db.get(i.id))| Pattern | Issue | Fix |
|---|---|---|
| query in loop | N+1 | Batch |
| select * | Too much | Select needed |
| no cache | Repeat | Cache |
// Blocking?
await heavy()
await more()| Pattern | Issue | Fix |
|---|---|---|
| Sequential | Slow | Promise.all |
| No timeout | Hang | Timeout |
| No limit | OOM | Limit |
## Performance - [endpoint]
### Timing
- [TIME] [endpoint]: [ms]ms
- Target: [target]ms
### Network
- [SIZE] [kb]kb
### Queries
- [COUNT] queries for [records]
- Issue: [pattern]
### Recommendations
1. [fix 1]
2. [fix 2]| Priority | When |
|---|---|
| 1 | Blocks user |
| 2 | Noticeable delay |
| 3 | Optimization |
Role: Performance Reviewer Input: Code or endpoint Output: Is fast?
Measure it. Fix what matters.
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.