doc-consistency-check-0da4be — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited doc-consistency-check-0da4be (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.
Documentation rots when code changes. This check finds stale references in Markdown files — paths, commands, package scripts, env names, links — and flags them for immediate correction.
git ls-files "*.md" # full doc inventory
rg -no "[A-Za-z0-9_-]+/[A-Za-z0-9_./-]+\.[a-z]{2,4}" README.md docs/ # path-like references test -f src/components/Button.tsx || echo "STALE: src/components/Button.tsx" rg -no "npm run [a-z:-]+" README.md docs/ | sort -u # documented scripts...
rg -n "\"scripts\"" -A 20 package.json # ...vs actual scripts
rg -no "[A-Z][A-Z0-9_]{3,}=" docs/ | sort -u # documented env names vs config source rg -n "functionNameFromDocs" src/ || echo "identifier not found in source"~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.