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

@jkeskikangas/skillcheck

v0.2.1

Published

Linter for agent skill directories

Readme

@jkeskikangas/skillcheck

Linter for agent skill directories (for example skills/<skill-name>/SKILL.md + agents/openai.yaml + references/).

Use it to catch broken links, missing frontmatter, and rubric drift before you ship skills to your team or publish them.

  • Fast local feedback (npx @jkeskikangas/skillcheck skills/)
  • CI-friendly exit codes + optional JSON output (--format json)
  • Cross-platform (Node.js 18+, no native deps)

Install

# Recommended (project devDependency)
npm install -D @jkeskikangas/skillcheck

# Or run without installing (great for CI / one-offs)
npx @jkeskikangas/skillcheck skills/

# Or install globally
npm install -g @jkeskikangas/skillcheck

Quick start

Lint all skills under skills/:

skillcheck skills/

Lint a single skill directory:

skillcheck skills/<skill-name>

Help:

skillcheck --help

Usage

skillcheck skills/                    # lint all skills
skillcheck skills/<skill-name>        # lint a single skill
skillcheck --fix skills/              # auto-fix rubric drift
skillcheck --format json skills/      # machine-readable output
skillcheck --skills-only skills/      # skip rubric checks
skillcheck --rubrics-only skills/     # skip skill checks
skillcheck --max-lines 500 skills/    # max allowed SKILL.md lines

What it checks

  • Frontmatter — required fields, valid types, schema conformance
  • Links — referenced files exist (agents/, references/)
  • Rubrics — validates markdown rubrics discovered in references/*rubric*.md
  • openai.yaml — tool definitions, token budget, safety constraints

Example output

When diagnostics are found, skillcheck exits non-zero and prints a one-line summary to stdout, with details on stderr:

[FAIL] 4 diagnostics in 1 skill.
P1 frontmatter-invalid  skills/writing-skills/SKILL.md  Missing required field: name
P2 link-missing         skills/writing-skills/SKILL.md  references/portability.md not found

When everything is valid:

[OK] 4 skills and 2 rubrics valid.

Options

  • --format stylish|json (default: stylish)
  • --max-lines <n>: max allowed SKILL.md lines (default: 500)
  • --fix: auto-fix rubric drift (only applies to rubric checks)
  • --skills-only: skip rubric checks
  • --rubrics-only: skip skill checks

Exit codes

  • 0 — no diagnostics found
  • 1 — diagnostics found
  • 2 — CLI usage / argument error

JSON output

Use --format json for tooling and CI integrations:

skillcheck --format json skills/ > skillcheck.json

The JSON shape matches the schema in the source repo:

  • schemas/lint-output.schema.json

Source: https://github.com/jkeskikangas/skills

CI (GitHub Actions)

Typical consumer usage (no repo checkout needed):

- name: Lint skills
  run: npx @jkeskikangas/skillcheck skills/

If you vendor skillcheck into a monorepo (this package’s own repo layout):

- name: Install
  run: npm ci
  working-directory: packages/skillcheck

- name: Build
  run: npm run build
  working-directory: packages/skillcheck

- name: Lint skills (repo-local)
  run: node packages/skillcheck/bin/skillcheck.js skills/

Development

cd packages/skillcheck && npm ci
cd packages/skillcheck && npm run build
cd packages/skillcheck && npm test

Related tooling

skillcheck focuses on structural validation and rubric consistency. For spec-level portability linting across agents, pair it with agnix in CI.

License

Apache-2.0