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

ancoder-skill-cli

v0.5.3

Published

CLI for managing everything-claude-code (ECC) components — agents, skills, commands, rules, hooks, MCP configs. Single binary, all assets embedded.

Readme

skill-cli

CLI for managing and testing Anthropic Agent Skills (e.g. anthropics/skills).

Install (npm)

# Global
npm install -g ancoder-skill-cli

# Or run without installing
npx ancoder-skill-cli --help

The npm package is self-contained and includes prebuilt binaries for:

  • macOS arm64
  • macOS x64
  • Linux arm64
  • Linux x64
  • Windows x64

After install, the wrapper selects the correct bundled binary for the current platform automatically.

Build from source (Go)

cd skill-cli
go build -o bin/skill-cli .
# Then run: ./bin/skill-cli --help
# Or via npm: node bin/skill-cli.js --help

Commands

| Command | Description | |--------|-------------| | skill-cli validate <path> | Validate SKILL.md, skill.contract.yaml, and evals/*.yaml | | skill-cli list [--path <dir>] | List installed skills | | skill-cli create <name> [--path <dir>] | Create a skill scaffold with contract and smoke eval templates | | skill-cli test <path> | Check that a skill has trigger docs, contract, and eval coverage | | skill-cli verify <path> [--suite smoke] | Run a machine-readable verification suite end-to-end | | skill-cli generate <name> --desc "..." | Generate a complete skill using Claude CLI (create → implement → verify) |

Machine-Readable Skill Layout

Task-oriented skills can now include a deterministic verification harness:

my-skill/
├── SKILL.md
├── skill.contract.yaml
├── evals/
│   └── smoke.yaml
├── fixtures/
└── scripts/
  • skill.contract.yaml defines the executable contract: entrypoint, inputs, outputs, invariants, and datasets.
  • evals/*.yaml defines runnable verification suites with deterministic checks like file existence, required content, and JSON assertions.
  • skill-cli verify materializes fixture data into a temp workspace, runs the skill entrypoint, and enforces the declared checks.

skill-cli verify executes local code declared by the skill contract, so only run it against trusted skills and repositories.

Publish to npm

  1. Set repository.url in package.json to your GitHub repo (e.g. git+https://github.com/your-org/skill-cli.git).

  2. Build binaries per platform before publishing the npm package:

    bash scripts/build-all.sh
  3. Optionally attach the same binaries to a GitHub Release with names:

    • skill-cli-darwin-arm64, skill-cli-darwin-x64
    • skill-cli-linux-x64, skill-cli-linux-arm64
    • skill-cli-win32-x64.exe
  4. Publish the package:

    npm login --registry=https://registry.npmjs.org/
    npm publish --access public --registry=https://registry.npmjs.org/ --userconfig ~/.npmrc

Users who npm install -g ancoder-skill-cli get a fully bundled package. No extra binary download is required during install.

License

MIT