Clean supplychain
paranoid auditor for Claude Code skills
npx -y skills add AntonioTimo/skillchecker --skill clean-supplychainAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 0 stars0 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
Ships hygienic dependency manifests — the negative test for the supply-chain rules (CR039 / HI023 / ME012). Everything here must stay GREEN.
SKILL.md
2.0 KB, 424 tokens by cl100k_base, as published. Nobody here has run it
Dep Manifest (clean)
What it ships (every form the supply-chain rules must NOT flag)
- requirements.txt — exact
==pins with--hash, all from the default registry. No non-registry source, no unpinned dep. - package.json — an exact pin and a caret range (bounded = pinned-enough), two
monorepo-local deps (
workspace:/file:), and only build/test/ci scripts (no install-lifecycle script). The ci script string contains an install verb, but the rule keys off the script NAME, not the command text. - package-lock.json — a real lock whose
resolvedpoints atregistry.npmjs.orgwith a sha512 integrity hash (under the base64-blob threshold). A lock is never scanned for unpinned deps — it IS the pin. - go.mod — normal versioned
requirelines withgithub.com/...module paths. A module path is not a non-registry URL; go.mod is exempt from unpinned checks. - references/graph.json — a DATA file that happens to carry
dependenciesandscriptskeys. The filename gate keeps it GREEN: only manifests named exactly are inspected, never an arbitraryreferences/*.json.
Why this passes audit (negative test for the supply-chain rules)
- Registry-host allowlist:
registry.npmjs.org/pypi.orgsources are not a bypass, so lockfileresolvedURLs and pinned registry deps stay GREEN. - Local-vs-remote gate:
workspace:/file:../are local, not remote. - Bounded ranges (
^,~,==,--hash) count as pinned — only*/latest/ a bare name / an unbounded>=are unpinned. - Filename gate: a data file under references/ is never read as a manifest.
Expected verdict: 🟢 GREEN, exit 0.