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

claude-skillseek

v1.0.5

Published

Discover and install Claude Code skills - browse trending, search with AI, install with one click

Readme

Claude SkillSeek

npm version License: MIT

Discover the perfect Claude Code skill for any workflow.

An interactive CLI to browse, search, and install Claude Code skills. Find what's trending, explore the most popular, search with AI, or just describe what you need.

Installation

npm install -g claude-skillseek

Quick Start

# Launch interactive browser
seek

# Or use commands directly
seek popular          # Most starred skills
seek trending         # Hot this week
seek ask "..."        # AI-powered search
seek search react     # Keyword search

Interactive Browser

Just type seek to launch the interactive browser:

╔═══════════════════════════════════════╗
║         SkillSeek                    ║
╚═══════════════════════════════════════╝

? What would you like to explore?
  ★ Popular skills
  🔥 Trending this week
  🔍 Search for skills

Features:

  • Browse popular or trending skills
  • Search by keyword
  • View full skill details (stars, description, topics, URL)
  • One-click install - select a skill and choose "Install"

Why Claude SkillSeek?

Claude Code has a built-in /plugin command, so why use this?

| Feature | /plugin | seek | |---------|-----------|--------| | Interactive browser | No | Yes - browse, preview, install in one flow | | Works outside Claude Code | No | Yes - use from any terminal | | Search all of GitHub | Marketplace only | Yes - finds any public skill repo | | AI-powered search | No | Yes - describe what you need | | Filter by stars, language, date | No | Yes - powerful filters | | See trending skills | No | Yes - what's hot this week |

Commands

seek - Interactive Browser

Launch with no arguments to browse interactively.

seek ask "<query>" - AI-Powered Search

Describe what you need in plain English.

seek ask "help me find skills for mobile app testing"
seek ask "I need something for React deployment"
seek ask "debugging tools for Python"

Setup: On first run, you'll be prompted to configure an API key (Anthropic or OpenAI).

seek popular - Most Starred

seek popular
seek popular --limit 10

seek trending - What's Hot

seek trending                    # This week
seek trending --period month     # This month

seek search <query> - Filtered Search

seek search debugging
seek search react --min-stars 50
seek search devops --updated-within 7
seek search python --language python

Filter Options: | Option | Description | |--------|-------------| | -s, --min-stars <n> | Minimum star count | | -u, --updated-within <days> | Recently updated only | | -l, --language <lang> | Filter by language | | --sort <field> | Sort by: stars, updated, created | | --limit <n> | Max results (1-100) |

seek install <repo> - Install Skills

seek install obra/superpowers
seek install https://github.com/owner/repo
seek install owner/repo --force

seek list - Installed Skills

seek list
seek ls

seek config - Configure AI

seek config

Configuration

AI Provider Setup

For seek ask, configure an API key:

Environment Variables:

export ANTHROPIC_API_KEY="sk-ant-..."
# or
export OPENAI_API_KEY="sk-..."

Or interactive setup:

seek config

| Provider | Model | Get Key | |----------|-------|---------| | Anthropic | Claude 3 Haiku | console.anthropic.com | | OpenAI | GPT-4o-mini | platform.openai.com |

Requirements

  • Node.js 18+
  • Git (for installing skills)

Contributing

We welcome contributions! Here are some ways to help:

Add Skills to the Curated List

Know a great Claude Code skill that isn't showing up in searches? Add it to our curated list:

  1. Fork this repo
  2. Edit src/utils/github.ts
  3. Add the repo to the KNOWN_SKILL_REPOS array:
    const KNOWN_SKILL_REPOS = [
      'anthropics/claude-code-skills',
      'obra/superpowers',
      // Add your skill repo here:
      'your-username/your-skill-repo',
    ];
  4. Submit a PR

Other Contributions

  • Report bugs - Open an issue if something isn't working
  • Suggest features - Ideas for improving skill discovery
  • Improve search - Help us find more skill repos by adding search queries to SEARCH_QUERIES

License

MIT