dead-code-removal-8644ac — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited dead-code-removal-8644ac (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.
Dead code increases maintenance overhead and confuses developers. Verify a symbol is truly unused across the entire repository, then delete it outright — never comment it out.
grep -rn "symbolName" . --include="*.ts" --include="*.tsx" # all references
grep -rn "from ['\"].*module-name" src/ # import sites
git log -3 --oneline -- path/to/suspect-file # recent touchesEcosystem tools can shortcut the inventory when available (e.g., knip or ts-prune for TypeScript exports, vulture for Python).
grep -rn "\"symbolName\"\|'symbolName'" . # string-keyed referencesIf there is any doubt, leave it alone or ask the user.
tsc --noEmit) after removal to ensure you didn't accidentally break a hidden dependency.~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.