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

skillless

v0.3.1

Published

Auto-discovery plugin for Claude Code — automatically recommends and installs capabilities without users needing to know about skills

Downloads

53

Readme

You don't need to know what skills are.

A Claude Code plugin that automatically discovers and recommends capabilities — so you can focus on what you're building, not what tools exist.

한국어 · Getting Started · How It Works


The Problem

Claude Code has 883+ skills installed, with even more available on the marketplace and GitHub. But there's a catch: you have to know they exist to use them.

Most users never type /skill because they don't know that's a thing. They miss out on specialized capabilities for React, Kubernetes, Terraform, and hundreds of other tools — simply because nobody told them.

The Solution

skillless removes the knowledge barrier entirely.

  • Smart planning/plans analyzes your project and installs the right tools before you start planning.
  • Automatic recommendations — Working with Docker? A specialized Docker tool gets suggested automatically. No commands needed.
  • Explicit search — Need something specific? /discover kubernetes searches across all sources at once.
  • Zero jargon — The plugin never says "skill" or "plugin" to users. It talks about "tools", "capabilities", and "expertise" instead.

Getting Started

Installation

One command:

npx skillless

That's it. The plugin is installed to ~/.claude/plugins/skillless.

git clone https://github.com/0oooooooo0/skillless.git
cc --plugin-dir /path/to/skillless

Usage

/plans — Plan with the right tools

The recommended way to use skillless. It analyzes your project, recommends tools, and enters plan mode — all in one step:

/plans React + Supabase dashboard with auth

What happens:

  1. Scans package.json, tsconfig.json, and other project files
  2. Detects your tech stack (React, Supabase, TypeScript, etc.)
  3. Searches for matching tools across all sources
  4. Shows recommendations and lets you pick what to install
  5. Enters plan mode with the installed tools ready to use
Detected: React, TypeScript, Supabase
Already installed: typescript-expert

Recommended:
| # | Name                 | Source    | Description                    |
|---|----------------------|----------|--------------------------------|
| 1 | react-best-practices | skills.sh | React patterns and hooks      |
| 2 | supabase-automation  | skills.sh | Supabase auth and DB patterns |

Select tools to install (1,2 / skip):

Just work normally

You don't have to do anything special. When you're working with a specific framework or tool and a relevant capability exists, skillless will suggest it naturally:

By the way, I found a specialized tool for Kubernetes that can help with cluster setup, manifest generation, and troubleshooting. Would you like me to set it up?

Search explicitly

/discover react
/discover "ci/cd pipeline"
/discover terraform

This searches 3 sources and shows a unified result table:

| # | Name                 | Source    | Description                          | Installed |
|---|----------------------|----------|--------------------------------------|-----------|
| 1 | react-patterns       | local    | Advanced React patterns and hooks    | Yes       |
| 2 | vercel-labs/react    | skills.sh | React development patterns (12K+)   | No        |
| 3 | anthropics/react-pro | github   | React best practices collection      | No        |

Pick a number to install, or cancel to skip.

How It Works

skillless searches three sources, prioritizing what's already on your machine:

┌───────────────────────────────────────────┐
│          /plans  /discover                │
│           or auto-discovery               │
└───────────────────┬───────────────────────┘
                    │
       ┌────────────┼────────────┐
       ▼            ▼            ▼
  ┌─────────┐ ┌──────────┐ ┌────────┐
  │  Local   │ │skills.sh │ │ GitHub │
  │ ~/.claude│ │Directory │ │Search  │
  │ /skills/ │ │  (Web)   │ │(fallback)│
  └─────────┘ └──────────┘ └────────┘
       │            │            │
       └────────────┴────────────┘
                    │
                    ▼
             Unified Results
                    │
                    ▼
             skill-installer
        (confirm → install → verify)
  1. Local — Scans ~/.claude/skills/*/SKILL.md for already-installed skills
  2. skills.sh — Searches the open skill directory (install via npx skillsadd)
  3. GitHub — Falls back to web search when other sources return few results

Installation flows

| Source | How it installs | |--------|----------------| | Already installed | Tells you it's ready to use | | skills.sh | Runs npx skillsadd <owner/repo> | | GitHub | Guides you to run /plugin install <url> or downloads SKILL.md directly |

Every installation requires explicit user confirmation. Nothing gets installed silently.

Project Structure

skillless/
├── .claude-plugin/
│   └── plugin.json              # Plugin manifest
├── bin/
│   └── cli.mjs                  # npx skillless CLI
├── skills/
│   ├── auto-discovery/
│   │   └── SKILL.md             # Background auto-recommendation
│   ├── skill-search/
│   │   └── SKILL.md             # Multi-source search engine
│   └── skill-installer/
│       └── SKILL.md             # Installation handler
└── commands/
    ├── discover.md              # /discover user command
    └── plans.md                 # /plans — plan with auto tool setup

Contributing

Issues and PRs welcome at github.com/0oooooooo0/skillless.

License

MIT


Built by @0oooooooo0

The best tools are the ones you don't have to look for.