hotspot-optimizer — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited hotspot-optimizer (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.
Find and (on request) fix complexity/performance hotspots with behavior preserved and proven by tests. Bias toward small, verified wins over broad rewrites.
Never change observable behavior. Every optimization preserves outputs, ordering, error semantics, and public APIs — and is proven by a test that passed before and after.
python3 scripts/scan_hotspots.py <root> --format json for aranked multi-language lead list. Treat output as leads, not proof.
Grep/Glob/Read: nested loops over the same data, membership tests in a loop(list vs set), sort-in-loop, pairwise comparisons, repeated scans, render recomputation, N+1 queries. Rank by impact (hot path × input size), not raw count.
feasible, a quick timing or complexity witness.
Edit that lowers complexity (seereferences/optimization-playbook.md). No drive-by refactors or formatting churn.
regresses, revert that change.
For large repos, shard files/dirs across Task subagents (read-only). Each returns a ranked findings list: file:line, pattern, estimated current → target complexity, risk. The main agent dedupes and merges into one ranked plan, then optimizes serially (it owns all edits). Cap concurrency at ~4-6 subagents; prefer fewer, broader shards over many tiny ones.
Default to a report (see references/report-template.md): ranked findings with location, current and target complexity, risk, and a proposed fix — but do not edit. Apply fixes only when the user says implement / fix / apply / refactor (or pre-approves low-risk wins like list→set membership).
scripts/scan_hotspots.py — heuristic multi-language hotspot scanner (leads only).references/optimization-playbook.md — transformation catalog + correctness checks + what-not-to-do.references/report-template.md — analysis-only report skeleton.~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.