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

@skills-router/cli

v0.1.1

Published

A unified CLI tool to manage skills for different AI CLI tools (Antigravity, Claude Code, Codex CLI, Cursor, Gemini CLI, Kiro CLI, OpenCode)

Downloads

185

Readme

skills-router-cli

A unified CLI tool to manage skills for different AI CLI tools (Claude Code, Codex CLI, Gemini CLI).

Features

  • 🔍 Discover & Install: Easily find and install skills from GitHub repositories
  • 🎯 Multi-CLI Support: Install skills to Claude Code, Codex CLI, or Gemini CLI
  • 📦 Unified Management: Single entry point for all your AI CLI skills
  • 🔎 Search: Find skills using a built-in search API
  • 📋 List & Remove: Manage your installed skills

Installation

Node.js (Global)

npm install -g @skills/cli

Python

pip install skills-router

Usage

Add Skills

Add a skill from a GitHub repository:

# Using full GitHub URL
skills-router add https://github.com/anthropics/skills/tree/main/skills

# Using owner/repo/path format
skills-router add anthropics/skills/skills

# Specify target CLI
skills-router add https://github.com/owner/repo/tree/main/skill-path --cli claude
skills-router add owner/repo/path --cli codex
skills-router add owner/repo/path --cli gemini

# Skip confirmation
skills-router add https://github.com/owner/repo/tree/main/skill-path --yes

Search Skills

Search for available skills:

skills-router search frida
skills-router search algorithmic-art

Note: The search API endpoint (https://www.skills-router.com/api/skills) is currently under development. If you encounter API errors, please use the add command directly with GitHub URLs.

List Installed Skills

List all installed skills for a specific CLI:

# List Claude Code skills (default)
skills-router list

# List skills for specific CLI
skills-router list --cli claude
skills-router list --cli codex
skills-router list --cli gemini

Remove Skills

Remove an installed skill:

# Remove with confirmation
skills-router remove skill-name

# Remove from specific CLI
skills-router remove skill-name --cli claude

# Skip confirmation
skills-router remove skill-name --yes

Supported CLIs

  • Claude Code (--cli claude) - Skills installed to ~/.claude/skills/
  • Codex CLI (--cli codex) - Skills installed to ~/.codex/skills/
  • Gemini CLI (--cli gemini) - Skills installed to ~/.gemini/skills/

Architecture

skills-router-cli consists of two parts:

  1. TypeScript CLI - Handles user interaction, command parsing, and UI
  2. Python Backend - Handles git operations, file management, and skill installation

Project Structure

skills-router-cli/
├── src/
│   ├── cli.ts                 # Main CLI entry point
│   ├── types/                 # TypeScript type definitions
│   ├── utils/                 # Utility functions (git, paths)
│   ├── python/                # Python bridge
│   └── commands/              # CLI commands
│       ├── add.ts
│       ├── search.ts
│       ├── list.ts
│       └── remove.ts
├── python/
│   ├── setup.py
│   └── skills_router/
│       ├── __init__.py
│       ├── core.py            # Core functionality
│       └── cli.py             # Python CLI entry point
├── package.json
├── tsconfig.json
└── README.md

Development

Prerequisites

  • Node.js >= 18.0.0
  • Python >= 3.8
  • Git

Setup

# Install Node dependencies
npm install

# Install Python dependencies
pip install -r python/requirements.txt

Build

# Build TypeScript
npm run build

# Build Python package
cd python
python setup.py build

Testing

# Run TypeScript CLI in development mode
npm run dev

# Run Python CLI
python3 -m skills_router.cli --help

License

MIT

Contributing

Contributions are welcome! Please open an issue or submit a pull request.

Roadmap

  • [ ] Support for GitHub tags and commits
  • [ ] Support for non-GitHub skill sources
  • [ ] Configuration file support
  • [ ] Skill update functionality
  • [ ] More CLI targets (OpenAI, Anthropic, etc.)