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

@funstack/skill-installer

v1.0.0

Published

CLI tool and library to install Agent Skills

Readme

@funstack/skill-installer

A CLI tool and library to install AI Agent skills by copying skill files to the appropriate location.

Installation

npm install -g @funstack/skill-installer

Usage

Interactive Mode

Run the tool with the path to your skill directory:

skill-installer ./path/to/my-skill

You'll see an interactive menu to select your AI agent:

Select AI Agent (↑↓ to move, Enter to confirm)
❯ 1. Claude Code (./.claude/skills)
  2. Codex (./.codex/skills)
  3. GitHub Copilot (./.github/skills)
  4. Cursor (./.cursor/skills)
  5. Gemini CLI (./.gemini/skills)
  6. Windsurf (./.windsurf/skills)
  7. OpenCode (./.opencode/skills)
  8. Other (custom path)

Missing your agent? Let us know: https://github.com/uhyo/funstack-skill-installer/issues
  • Use arrow keys (↑↓) to navigate
  • Press a number key (1-9) to jump to an option
  • Press Enter to confirm your selection

Non-Interactive Mode

For CI/CD pipelines or scripted installations, set the SKILL_INSTALL_PATH environment variable:

SKILL_INSTALL_PATH=./.claude/skills skill-installer ./path/to/my-skill

Programmatic Usage

You can also use this package as a library:

import { install } from '@funstack/skill-installer';

// Prompts the user to select an agent and installs the skill
const installedPath = await install('./path/to/my-skill');
console.log(`Installed to: ${installedPath}`);

The install function returns a promise that resolves to the final installation path.

Supported AI Agents

| Agent | Installation Path | |-------|------------------| | Claude Code | ./.claude/skills | | Codex | ./.codex/skills | | GitHub Copilot | ./.github/skills | | Cursor | ./.cursor/skills | | Gemini CLI | ./.gemini/skills | | Windsurf | ./.windsurf/skills | | OpenCode | ./.opencode/skills |

Don't see your agent? Open an issue to request support!

License

MIT