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

@yarikleto/claude-skills

v0.4.0

Published

CLI for installing individual Claude Code skills from the @yarikleto/claude-skills collection.

Readme


Install

Pick the route that fits.

CLI — pick individual skills

The repo ships a small interactive CLI that copies any skill into either your user-level or the current project's .claude/skills/ directory.

npx @yarikleto/claude-skills            # interactive menu
npx @yarikleto/claude-skills list       # show all skills + installed state
npx @yarikleto/claude-skills add        # interactive picker
npx @yarikleto/claude-skills add electron-debug --scope user
npx @yarikleto/claude-skills remove electron-debug --scope project

Scopes:

  • user~/.claude/skills/<name>/ — available in every project
  • project./.claude/skills/<name>/ — scoped to the current working dir

Pass --scope to skip the prompt. Pass -y/--yes to skip confirmations. Run --help for the full usage.

Plugin — install everything

This repo is also a Claude Code plugin and its own marketplace. In Claude Code:

/plugin marketplace add yarikleto/claude-skills
/plugin install @yarikleto/claude-skills@yarikleto

The install syntax is <plugin-name>@<marketplace-name>, so the scoped plugin name @yarikleto/claude-skills is paired with the marketplace name yarikleto.

For local development:

claude --plugin-dir /path/to/claude-skills

Skills

| Skill | What it does | | --- | --- | | electron-debug | Launches an Electron app headlessly via Playwright, captures main + renderer logs and page errors, optionally screenshots, then exits — used to verify Electron apps boot cleanly after code changes. |

Adding a new skill

  1. Create skills/<skill-name>/SKILL.md with frontmatter (name, description).
  2. Add any helper files under skills/<skill-name>/ (e.g. scripts/, templates/). Reference them from SKILL.md using ${CLAUDE_PLUGIN_ROOT}/skills/<skill-name>/... so paths resolve regardless of which project the skill runs from.
  3. Bump the version in both .claude-plugin/plugin.json and package.json.
  4. Commit and push.

Layout

.claude-plugin/
  plugin.json        plugin manifest
  marketplace.json   marketplace manifest (so this repo installs directly)
bin/
  skills.js          the claude-skills CLI
skills/
  <skill-name>/
    SKILL.md
    scripts/ …       optional helpers
.github/
  assets/            README images