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

skill4agent

v1.0.12

Published

CLI tool for installing agent skills (forwarded to @skill4agent/cli)

Readme

skill4agent CLI

npm version npm downloads GitHub stars License

🚀 The easiest way to install and manage Agent Skills for AI coding assistants

By skill4agent.com - A command-line tool for installing Agent Skills.

skill4agent website

English | 中文


🌟 Why skill4agent?

  • 🎯 Curated Skills: Access a vast collection of high-quality skills from skill4agent.com
  • 🌐 Bilingual Support: Every skill includes both English and Chinese translations, breaking language barriers
  • ✅ Quality Assurance: Automated script detection ensures all skills are safe and reliable
  • 🏷️ Smart Categorization: Fine-grained categories and tags help you quickly find the right skill
  • 🤖 AI-Optimized: Tags are embedded in SKILL.md, enabling AI Agents to match your needs more accurately
  • ⚡ One-Command Install: Install any skill to multiple IDEs with a single command
  • 🔧 Multi-IDE Support: Works with Trae, Cursor, Claude, OpenCode, OpenClaw, and more
  • 🌍 Global & Project Installation: Install globally or per-project
  • 📦 Smart Management: List and uninstall skills easily

Installation

# Using npx (recommended - no installation required)
npx skill4agent <command>

# Or install globally
npm install -g @skill4agent/cli

💡 Find available skills at skill4agent.com

  • <source>: The source repository (e.g., anthropics/skills)
  • <skill>: The skill name (e.g., frontend-design)
# Interactive installation (recommended for beginners)
npx skill4agent add <source> <skill>

# Non-interactive installation (for scripts and AI automation)
npx skill4agent install <source> <skill> [options]

# List installed skills
npx skill4agent list

# Uninstall a skill
npx skill4agent uninstall <skill>

Commands

add - Interactive Installation

Interactive installation with prompts for configuration options.

npx skill4agent add <source> <skill>

install - Non-interactive Installation

For scripts and AI automation with explicit options.

npx skill4agent install <source> <skill> [options]

| Option | Description | Default | |--------|-------------|---------| | --type | original or translated | original | | --global | Install globally (available to all projects) | project dir | | --dirs | Installation directories (comma-separated): .trae,.cursor | .agents only | | --method | symlink or copy | symlink |

list - List Installed Skills

Display all installed skills with their installation details.

npx skill4agent list

Output columns:

  • Name: Skill name
  • Source: Repository source (e.g., anthropics/skills)
  • Scope: Installation scope (Global, Project, or Global,Project)
  • Installed: Installation date

uninstall - Uninstall a Skill

Remove an installed skill.

# Uninstall from all scopes (global and all projects)
npx skill4agent uninstall <skill>

# Uninstall from global only
npx skill4agent uninstall <skill> --global

# Uninstall from all projects only (non-global installations)
npx skill4agent uninstall <skill> --project

Examples

Installation Examples

# Minimal: install with all defaults
npx skill4agent install anthropics/skills frontend-design

# Install to specific directories (comma-separated)
npx skill4agent install anthropics/skills frontend-design --dirs ".trae,.cursor"

# Global installation (available to all projects)
npx skill4agent install anthropics/skills frontend-design --global

# Full options
npx skill4agent install anthropics/skills frontend-design \
  --type original \
  --global \
  --dirs ".trae,.cursor" \
  --method symlink

List Example

$ npx skill4agent list

📦 Installed Skills (3 skills, 5 installs)
────────────────────────────────────────────────────────────────────────────────
Name                      Source                    Scope           Installed
────────────────────────────────────────────────────────────────────────────────
frontend-design           anthropics/skills         Global,Project  2026/02/08
agent-tools               inferencesh/skills        Global          2026/02/07
web-search                custom/skills             Project         2026/02/06
────────────────────────────────────────────────────────────────────────────────

Total: 3 skills (5 installs)

Uninstall Examples

# Uninstall completely (all scopes)
npx skill4agent uninstall frontend-design

# Uninstall from global only
npx skill4agent uninstall frontend-design --global

# Uninstall from all projects only
npx skill4agent uninstall frontend-design --project

🔗 Useful Links