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

@tiwariritesh/skilllint

v1.0.0

Published

Install and lint Claude skill files. Run --install-skill to add /skilllint to Claude Code.

Readme

skilllint

Lint Claude skill files from the command line, or install the /skilllint skill into Claude Code for in-conversation evaluation.

Install

npm install -g @tiwariritesh/skilllint

Or use without installing:

npx @tiwariritesh/skilllint@latest --install-skill

Usage

Install the Claude Code skill

Adds /skilllint to Claude Code so you can evaluate skill files directly in any conversation:

skilllint --install-skill

Then in Claude Code:

/skilllint path/to/your-skill.md

Claude runs a full 80-heuristic evaluation and writes two files alongside your skill:

  • your-skill-analysis.md — scored report with issues and fixes per category
  • your-skill-improved.md — rewritten version with failing sections fixed

Static analysis (CLI)

Run a fast static analysis against 6 categories without an LLM:

skilllint path/to/your-skill.md

For the full 80-heuristic LLM evaluation, use the Claude Code skill or visit skilllint.dev.

Options

--min-score <n>   Exit 1 if score is below n. Default: 50. Range: 0–100.
--json            Emit raw JSON. Exit codes still apply.
--no-color        Suppress ANSI color output. Also respects NO_COLOR env var.
--version         Print version.
--help            Print usage.

Exit codes

| Code | Meaning | |------|---------| | 0 | Score at or above threshold | | 1 | Score below threshold | | 2 | Not a valid skill file | | 3 | File not found, bad flag, or tool error |

What is a Claude skill file?

A skill file (.md) tells Claude how to perform a specific task when a user types a slash command like /commit or /review-pr. Skill files live in ~/.claude/skills/<skill-name>/SKILL.md.

skilllint checks them for discoverability, instruction quality, scope, token efficiency, security posture, and more.

Keep the skill up to date

The /skilllint Claude Code skill is bundled in this package. When you update the package, reinstall the skill:

npx @tiwariritesh/skilllint@latest --install-skill

License

MIT