agentsclimarketplace

Clean supplychain

Skill AntonioTimo/skillchecker/examples/clean-supplychain

paranoid auditor for Claude Code skills

Install
npx -y skills add AntonioTimo/skillchecker --skill clean-supplychain

Assembled 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 resolved points at registry.npmjs.org with 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 require lines with github.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 dependencies and scripts keys. The filename gate keeps it GREEN: only manifests named exactly are inspected, never an arbitrary references/*.json.

Why this passes audit (negative test for the supply-chain rules)

  • Registry-host allowlist: registry.npmjs.org / pypi.org sources are not a bypass, so lockfile resolved URLs 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.

Keep looking

Skills are one crate of 328,083. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.