agentsclimarketplace

Check dep

Skill flopeztancredi/slopmd/skills/check-dep

Verify a package is trustworthy before adding it as a dependency, guarding against hallucinated packages and slopsquatting. Use whenever adding, suggesting, or installing any new npm or PyPI dependency, or when the user asks whether a package is safe or trusted. Returns trusted, caution, or requires-approval.From its SKILL.md

Install
npx -y skills add flopeztancredi/slopmd --skill check-dep

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 file declares

Copied from the file, not written here

The file declares its own license as MIT. That is the author’s claim about this one file, and it is not the same thing as the license GitHub reports for the repository, which is listed with the other numbers below.

SKILL.md

1.9 KB, 350 tokens by cl100k_base, as published. Nobody here has run it

SlopMD: Check-Dep

Run this before adding ANY new dependency, always. Roughly 20 percent of LLM-suggested package names do not exist, and attackers register hallucinated names (slopsquatting). Never install a package you have not verified in this session.

Procedure

From this skill's directory:

node scripts/check-dep.js <package>[@version] [--eco npm|pypi] [--json]

The script checks: existence on the official registry, package age, maintenance, weekly downloads, known vulnerabilities (OSV.dev), typosquatting distance against popular packages, and repository linkage.

Obey the verdict (exit code)

  • 0, TRUSTED: proceed. Pin the exact version ([email protected], no ^, ~, or latest) and commit the lockfile.
  • 1, CAUTION: you may proceed only with justification. State the warning signals to the user in one line, explain why this package is still the right choice over alternatives, and pin the exact version.
  • 2, REQUIRES APPROVAL: stop. Do not install, do not add to any manifest, do not suggest a workaround install. Present the failed signals to the user and wait for an explicit human decision. If the package does not exist, say plainly that it may be a hallucinated name and propose the established alternative for the need at hand.

Also use it when

  • Auditing existing manifests: run it over each dependency the user asks about.
  • The network is unavailable: the script marks signals as unknown and returns caution. Tell the user verification was incomplete; do not silently treat unknown as safe.

What ships with it: 1 file

16.8 KB alongside SKILL.md, 1 of them executable

scripts/

Keep looking

Skills are one crate of 326,614. 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.