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-inspector

v0.1.2

Published

CLI tool to inspect Agent Skills for malicious behaviors

Readme

skill-inspector

A sophisticated agentic tool built with Mastra to inspect AI Agent Skills for quality, security, and compatibility.

Features

  • Automated Spec Validation: Ensures skills adhere to the agentskills.io specification.
  • Deep Security Auditing: Two-phase agentic workflow to detect RCE, data exfiltration, and other vulnerabilities.
  • Provider Compatibility: Analyzes skills for vendor-specific extensions to ensure portability across Claude, GPT-4, Gemini, and more.
  • Smart Discovery: Automatically finds skills in local directories or remote GitHub repositories.
  • Actionable Reports: Provides a clear 0-100 score with specific findings and proposed fixes.

Getting Started

Installation

You can run skill-inspector directly using npx:

npx skill-inspector inspect ./my-skill

Or install it globally:

# Using npm
npm install -g skill-inspector

# Using pnpm
pnpm add -g skill-inspector

# Using yarn
yarn global add skill-inspector

For Contributors

If you want to run the project locally for development:

# Install dependencies
pnpm install

# Build the project
pnpm build

# Run via pnpm dev
pnpm dev inspect ./my-skill

Usage

# Basic inspection of a local directory
skill-inspector inspect ./my-skill

# Inspect a remote GitHub repository
skill-inspector inspect anthropics/skills

# List found skills without inspecting
skill-inspector inspect ./my-skill --list

# Inspect specific skills by name
skill-inspector inspect anthropics/skills -s "git-commit" "test-and-fix"

# Choose a specific LLM provider and model
skill-inspector inspect ./my-skill --provider anthropic --model claude-3-5-sonnet-latest

# Output results as JSON for automation
skill-inspector inspect ./my-skill --json

# Debug mode (see detailed agent thoughts and logs)
skill-inspector inspect ./my-skill --debug

Inspect-Skills Agent Skill

This repository includes an Agent Skill (skills/inspect-skills) that lets AI coding agents (e.g. Cursor, Claude Code) run the inspector from within a session. Use it when you want an agent to validate skills, audit for security, or check spec compliance.

  • List skills (no API key): run the skill’s scripts/list-skills.sh with a path or owner/repo.
  • Full inspection: run scripts/inspect.sh with the same source and optional flags (e.g. --provider, --json). At least one LLM API key is required.

You can use the skill from this repo’s skills/inspect-skills/ directory, or install it with npx skills:

npx skills install skills/inspect-skills

LLM Configuration

The inspector supports multiple providers. Set your API keys as environment variables:

| Provider | CLI Value | Default Model | API Key Env Var | | :------------------- | :----------------- | :-------------------------- | :------------------------------------------------ | | OpenAI | openai | gpt-5-mini | OPENAI_API_KEY | | Anthropic | anthropic | claude-4-5-haiku@20260315 | ANTHROPIC_API_KEY | | Google AI | google | gemini-2.5-flash | GOOGLE_API_KEY | | Mistral | mistral | mistral-small-latest | MISTRAL_API_KEY | | Groq | groq | llama-4-scout-17b | GROQ_API_KEY | | Vertex AI | google-vertex | gemini-2.5-flash | GOOGLE_VERTEX_PROJECT, GOOGLE_VERTEX_LOCATION | | Anthropic Vertex | anthropic-vertex | claude-4-5-haiku@20260315 | GOOGLE_VERTEX_PROJECT, GOOGLE_VERTEX_LOCATION |

Documentation

For technical details, architecture diagrams, and contribution guidelines, see CONTRIBUTING.md.

License

Apache-2.0