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

@avee1234/skillproof

v0.1.0

Published

The open trust manifest for AI-agent skills. A portable, signed sidecar that binds a skill to its provenance, its least-privilege capability scope, and the verification gates it passed — so a skill's trust survives crossing a platform boundary instead of

Readme

skillproof

The open trust manifest for AI-agent skills. Zero dependencies.

A skill you download is code + instructions that will run inside your agent — and about 1 in 4 community skills carries a vulnerability. The ecosystem's answer is "verify, then install, then constrain." But trust dies at every boundary: a skill verified in one catalog arrives in your harness as an unlabeled blob.

skillproof is a small, signed sidecar (skill.proof.json) that travels with a skill and attests four things a consumer needs before trusting it:

  • provenance — who authored or derived it, from what (incl. the attested episodes a learned skill was distilled from);
  • capabilities — the least-privilege scope it may exercise (action + resource);
  • verification — which gates it passed, the reproducible evidence, and the resulting trust tier (T1–T4);
  • integrity — a content hash + detached signature, checkable offline; any edit voids the proof.
skillproof attest ./my-skill --sign ed25519 --key key.pem   # bind provenance + caps + sign
skillproof verify ./my-skill                                # run static + conformance gates, derive tier
skillproof gate   ./my-skill --min-tier T3                  # verify-then-install, in one line (exit 2 to block)

A format and a verifier, not a runtime. skillproof doesn't replace your harness's approval gate or sandbox — it produces the portable attestation your gate consumes. It runs the checks it can prove with zero dependencies (static scan + capability conformance) and standardizes the evidence envelope for the gates that need an LLM or a sandbox.

And after a run, skillproof audit confirms the skill behaved inside its envelope — every side-effect was approved and within the declared capabilities (the resource-precision check static analysis can't do):

skillproof audit ./my-skill run-log.jsonl   # exit 2 if any effect was out-of-scope or unapproved

Enforce it in Claude Code

Wire skillproof hook as a skill-load gate so the harness enforces verify-then-install. Fail-safe (any error exits 0, never wedges a session) and advisory by default — set SKILLPROOF_ENFORCE=1 to actually block:

{
  "hooks": {
    "PreToolUse": [
      { "matcher": "Skill", "hooks": [ { "type": "command", "command": "skillproof hook" } ] }
    ]
  }
}

See SPEC.md for the format and vision.md for the why.

Part of an open, dependency-free family of agent-infrastructure formats (capgrant, provenant, truecall, skillbridge, constraintguard, …).

Status: v0.2 — attest / verify / gate / tier / audit / hook. G1 (static scan) + G4 (capability conformance) run zero-dep; the biconditional audit does the runtime side-effect check; the Claude Code hook enforces verify-then-install. HMAC + ed25519 signing. 23 passing tests, zero runtime dependencies. Run them: npm test.

License

MIT © Abhi Das