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

cc-templates

v1.0.5

Published

Install Claude Code components with one command

Downloads

452

Readme

maystudios

Install Claude Code components — skills, agents, hooks, and commands — with one command.

npm version License: MIT Node.js >=22


Quick Start

via npx

Run the interactive menu — pick a component type, pick a component, done:

npx maystudios
? What type of component do you want to install? (Use arrow keys)
  Skill
  Agent
  Hook
  Command
? Which skill? (Use arrow keys)
  tech-product-landing
  video-download
  video-fetch-and-summarize
> video-summarizer

Installed skill video-download to .claude/skills/video-download/  by maystudios

Install directly without the menu:

npx maystudios --skill video-download

via skills.sh

# Install all skills
npx skills add maystudios/maystudios

# Install a specific skill
npx skills add maystudios/maystudios --skill video-download
npx skills add maystudios/maystudios --skill tech-product-landing

Component Types

Skills are packaged instruction sets that extend Claude's capabilities for specific tasks. A skill is a directory of markdown rules and references. Installed to .claude/skills/<name>/.

Agents are custom sub-agents with specialized behaviors — each is a markdown file that defines a focused AI persona or workflow. Installed to .claude/agents/<name>.md.

Hooks are shell commands that run automatically on Claude Code lifecycle events (e.g., after a file save, before a commit). Merged into settings.json — never overwrites your existing hooks.

Commands are custom slash commands for Claude Code. Each adds a /command-name shortcut in the Claude Code interface. Installed to .claude/commands/<name>.md.


Available Components

Skills

| Name | Description | Author | Requires | |------|-------------|--------|----------| | tech-product-landing | Build production-grade landing pages for software/CLI tools and developer libraries. Dark theme, framer-motion animations, tabbed docs. Stack: Vite + React + TypeScript + Tailwind v4 | maystudios | node, npm | | video-download | Download videos from YouTube, Instagram, TikTok, and 1000+ platforms via yt-dlp | maystudios | yt-dlp | | video-fetch-and-summarize | Download videos and generate structured AI summaries using Google Gemini | maystudios | yt-dlp, GEMINI_API_KEY | | video-summarizer | Generate AI summaries of existing MP4 files using Google Gemini | maystudios | GEMINI_API_KEY |

Agents, Hooks, Commands

No entries yet — the catalog grows via community contributions. See CONTRIBUTING.md to add the first one.


All CLI Commands

npx maystudios                          # Interactive menu
npx maystudios --skill <name>           # Install skill directly
npx maystudios --agent <name>           # Install agent
npx maystudios --hook <name>            # Install hook
npx maystudios --command <name>         # Install command
npx maystudios --list                   # Browse full catalog
npx maystudios --skill <name> --global  # Install to ~/.claude/
npx maystudios --skill <name> --force   # Reinstall over existing

Requirements

  • Node.js >= 22

Contributing

New templates are welcome via pull request — skills, agents, hooks, and commands all accepted. See CONTRIBUTING.md for the full guide: fork setup, how to add a component to the catalog, and the PR process.