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

@valve-tech/agent-skills

v0.20.0

Published

Node-only dev tool (NOT library code — the toolkit's browser-safety invariant does not apply here). An `npx`-able CLI that copies the integration skills shipped inside installed `@valve-tech/*` packages into a consumer project's `.claude/skills/`, so AI a

Readme

@valve-tech/agent-skills

Make the integration skills that ship inside @valve-tech/* packages discoverable to AI coding agents. Every toolkit package already bundles skills/<pkg>-integration/SKILL.md and AGENTS.md in its npm tarball — but Claude Code does not auto-discover skills inside node_modules, so in a consumer project they're invisible. This CLI copies them into your project's .claude/skills/ where the agent can find them.

# In your project (with @valve-tech/* packages installed):
npx @valve-tech/agent-skills install

Node-only by design. This is a dev tool, not library code. The toolkit's browser-safety invariant applies to the library packages, not to this CLI — it reads node_modules and writes files, so it uses Node's fs/path. Don't "fix" that. It has zero runtime dependencies.

What it does

  1. Finds the project root (nearest package.json above the cwd; override with --root <dir>).
  2. Scans node_modules/@valve-tech/*/skills/*/SKILL.md — including this package's own building-apps-with-evm-toolkit skill, which is how the cross-package wiring guide gets distributed.
  3. Copies (never symlinks) each skill directory into .claude/skills/<skill-dir>/. Copy is deliberate: cross-platform, survives node_modules wipes, no symlink-following surprises. Re-run to refresh.
  4. Records provenance in .claude/skills/.valve-tech-agent-skills.json (source package + installed version + per-file hashes) so re-runs know what's ours to refresh versus yours to leave alone.

Commands

install

Copies installed skills into .claude/skills/. Idempotent and conservative:

  • A skill dir that doesn't exist → installed.
  • A skill dir we previously installed (in the manifest) → refreshed in place.
  • A skill dir that exists but is not in the manifest → reported as a conflict and never touched (you own it).
  • A manifest-tracked skill whose source package is gone → reported as an orphan; removed only with --prune.
npx @valve-tech/agent-skills install            # copy / refresh
npx @valve-tech/agent-skills install --dry-run  # show what would change
npx @valve-tech/agent-skills install --prune    # also remove orphans
npx @valve-tech/agent-skills install --root .   # explicit project root

check

Compares the manifest against installed package versions and on-disk copies. Exit 0 if everything is in sync; exit 1 with a per-skill drift report otherwise (package upgraded since install, files modified locally, source package missing, copy deleted). CI-friendly:

npx @valve-tech/agent-skills check

A typical loop: check fails after a dependency upgrade → run install to refresh → check passes.

What it deliberately does not do

  • No postinstall hook. Security-conscious projects disable install scripts and npm hides their output. Discovery is via docs and the skills themselves, not a silent hook.
  • No symlink mode, no watch mode, no other-harness output formats. AGENTS.md already serves non-skill-aware agents.

yarn Plug'n'Play

PnP projects have no node_modules tree to read. The CLI detects this (.pnp.cjs present, node_modules absent) and exits with guidance: read the skills in place from each package's published tarball instead.

Part of the toolkit

@valve-tech/agent-skills rides the valve-tech/evm-toolkit synchronized release line — every package publishes at the same 0.x version together.

License

MIT