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

agentistry

v0.2.4

Published

CLI for searching and installing AI agent skills from Agentistry

Readme

agentistry

The open skill marketplace for AI agents. Search, install, and manage reusable skills for Claude Code, MCP servers, and other AI agents.

Quick Start

# Interactive mode — search, browse, and install
npx agentistry

# Or install globally
npm install -g agentistry
agentistry

Commands

Search & Install

# Interactive search + install
agentistry find "code review"

# Search (non-interactive, great for scripts)
agentistry search "testing"
agentistry search --target claude_code --limit 10

# Install a skill
agentistry add inspect-api-surface
agentistry add owner/repo              # from GitHub
agentistry add ./local-skill           # from local path
agentistry add some-skill --global     # install globally
agentistry add some-skill -y           # skip prompts (CI-friendly)

Manage Installed Skills

# List installed skills
agentistry list
agentistry ls --global

# Check for updates
agentistry check

# Update all skills
agentistry update
agentistry update -y                   # skip prompts

# Remove skills
agentistry remove my-skill
agentistry rm my-skill -y

Create & Publish Skills

# Scaffold a new SKILL.md
agentistry init my-skill

# Authenticate (opens browser)
agentistry login

# Submit for review
agentistry submit ./my-skill --name my-skill
agentistry submit ./my-skill --name my-skill --version 2.0.0 --poll

# Check your submissions
agentistry submissions
agentistry submissions --limit 20

# Log out
agentistry logout

Install Locations

| Flag | Claude Code | Path | |------|------------|------| | (default) | Project | .claude/skills/<slug>/ | | --global | Global | ~/.claude/skills/<slug>/ | | --dir <path> | Custom | <path>/<slug>/ |

Agent Support

Agentistry auto-detects installed agents and installs skills to the right location:

  • Claude Code.claude/skills/
  • Codex.codex/skills/
  • More agents coming soon

Use -a to target specific agents:

agentistry add some-skill -a claude_code codex

CI / Automation

All commands support non-interactive mode with -y / --yes:

agentistry add some-skill -y
agentistry update -y
agentistry remove old-skill -y

License

MIT