naming-and-structure-cleanup-c8dfac — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited naming-and-structure-cleanup-c8dfac (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.
Inconsistent naming (camelCase vs snake_case) and messy file structures make codebases hard to navigate. Enforce the dominant local convention with focused, logic-free diffs.
find src -type f | grep -cE "/[a-z]+[A-Z][a-zA-Z]*\." # camelCase filenames
find src -type f | grep -cE "/[a-z]+(_[a-z]+)+\." # snake_case filenames
grep -rnE "function [a-z]+_[a-z]+\(" src/ # snake_case functions in a camelCase reposafe-rename command pattern to update variables, classes, or files. Ensure all imports are updated: git grep -ln "\bOldName\b" | xargs sed -i "s/\bOldName\b/NewName/g" # then review the diff
git mv src/old_location/Component.tsx src/feature/Component.tsx # git mv preserves history
git grep -n "old_location" # no stale import paths remainButton.tsx, Button.css, and Button.test.tsx in the same directory).~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.