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

@skill-kit/lint

v1.0.0

Published

SKILL.md format linter for Skill Kit - check and fix your AI agent skills

Downloads

102

Readme

@skill-kit/lint

SKILL.md format linter for Skill Kit - check and fix your AI agent skills.

Installation

npm install @skill-kit/lint
# or
pnpm add @skill-kit/lint

Usage

CLI

# Lint all SKILL.md files
skill-lint

# Lint specific files
skill-lint ./path/to/SKILL.md

# Auto-fix issues
skill-lint --fix

# Output in different formats
skill-lint --format json
skill-lint --format github  # For CI/CD

Programmatic API

import { Linter } from '@skill-kit/lint';

const linter = new Linter();

// Lint a file
const result = await linter.lint('./SKILL.md');
console.log(result.messages);

// Lint content directly
const result = await linter.lintContent(content, 'SKILL.md');

// Fix issues
const fixResult = await linter.fix('./SKILL.md');
console.log(fixResult.output);

Configuration

Create a .skilllintrc.json file in your project root:

{
  "extends": "recommended",
  "rules": {
    "frontmatter-required": "error",
    "description-format": "warn",
    "max-length": ["warn", { "max": 15000 }]
  }
}

Presets

  • recommended - Sensible defaults for most projects
  • strict - Stricter rules for production skills

Available Rules

Format Rules

| Rule | Description | Fixable | |------|-------------|---------| | frontmatter-required | Ensure frontmatter exists | No | | frontmatter-fields | Ensure required fields exist | No | | sections-required | Ensure required sections exist | No | | section-not-empty | Ensure sections have content | No |

Style Rules

| Rule | Description | Fixable | |------|-------------|---------| | description-format | Ensure third-person description | Yes |

Best Practices Rules

| Rule | Description | Fixable | |------|-------------|---------| | max-length | Limit SKILL.md length | No | | examples-exist | Ensure examples are provided | No | | triggers-count | Limit trigger count | No | | steps-count | Limit workflow steps | No |

Reference Rules

| Rule | Description | Fixable | |------|-------------|---------| | no-broken-links | Check internal links | No |

Output Formats

Stylish (default)

/path/to/SKILL.md
  1:1  error  Missing frontmatter  frontmatter-required
  2:1  warning  Description should use third-person  description-format

2 problems (1 error, 1 warning)

JSON

[{
  "filePath": "/path/to/SKILL.md",
  "messages": [...],
  "errorCount": 1,
  "warningCount": 1
}]

GitHub Actions

::error file=/path/to/SKILL.md,line=1,col=1::frontmatter-required: Missing frontmatter

License

MIT