npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

skillcap-lock

v0.3.0

Published

Review what an Agent Skill can newly do, not just what bytes changed.

Readme

SkillCap Lock

npm version CI Node.js License

Review what an Agent Skill can do before an agent loads it. SkillCap Lock validates the Agent Skills specification, hashes every file, extracts observable capability evidence, scores instruction quality and risk, and compares the result with a reviewed baseline.

Position in the ecosystem

skills, skillpm, skills-lock, sklock, and Tank focus on discovery, installation, dependency resolution, or reproducible distribution. skill-check focuses on structural quality. SkillCap Lock is the static review layer for capability change and quality policy; it never installs or executes a skill.

Install

npm install --save-dev skillcap-lock
npx skillcap --help

Node.js 20 or newer is required.

Baseline and CI

# Discover every nested SKILL.md and create the reviewed baseline
npx skillcap init ./skills

# Review semantic changes after an update
npx skillcap check ./skills --markdown
npx skillcap check ./skills --json > skillcap-report.json
npx skillcap check ./skills --sarif > skillcap.sarif

# Frozen CI: fail when the lock is missing or stale
npx skillcap check ./skills --frozen

# Accept an intentionally reviewed update
npx skillcap update ./skills --accept

The generated skillcap.lock.json stores file hashes, redacted capability evidence, quality/risk scores, validation issues, and provenance. It does not store skill bodies or secret values.

Evidence and scoring

Capabilities are reported with kind, value, file, line, provenance, and confidence:

| Evidence | Examples | | --- | --- | | network | URLs and remote destinations | | command / interpreter | npm, curl, python, shell and runtime invocations | | write / path | filesystem mutation language and paths | | executable | bundled scripts and executable filenames | | env / secret | environment names and token-shaped strings (redacted) |

Each skill has:

  • a risk score reflecting observable network, command, write, executable, and secret signals;
  • a quality score reflecting valid frontmatter, useful descriptions, body size, and completeness;
  • stable validation IDs (SKV001SKV006) and capability delta IDs (SKC001SKC008).

Static evidence is deliberately conservative. It can miss behavior hidden behind indirection and can over-approximate examples; it is a review aid, not a sandbox or security certificate.

Policies

{
  "maxRiskScore": 35,
  "minQualityScore": 75,
  "requireFrontmatter": true,
  "deny": [
    { "kind": "network", "value": "internal.example.com" },
    { "kind": "executable", "value": "deploy.sh" }
  ]
}

Run npx skillcap check ./skills --policy skillcap.policy.json. Policy violations fail with exit code 1.

Commands and output

skillcap init <directory>
skillcap check <directory> [--policy file] [--frozen] [--json|--markdown|--sarif]
skillcap update <directory> --accept
skillcap explain <directory> <skill-name>

Exit code 0 means no high-severity change or policy violation, 1 means review is required, and 2 means invalid input or scanner failure. JSON is schema-versioned; Markdown is suitable for pull requests; SARIF integrates with code scanning.

Development

npm install
npm run lint
npm test
npm run test:cli
npm pack --dry-run

Issues and pull requests are welcome in the GitHub repository.

License

MIT © Debaditya Hait