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

myskill

v1.2.3

Published

CLI tool for creating and managing AI agent skills

Readme

myskill

The Universal CLI for AI Agent Skills

myskill is a powerful command-line tool designed to standardize the creation, management, and sharing of "Agent Skills" across the modern AI coding ecosystem. It abstracts away the differences between platforms like Claude Code, OpenCode, OpenAI Codex, and Gemini CLI, allowing developers to write skills once and deploy them anywhere.

🚀 Key Features

  • Unified Creation: Generate valid, schema-compliant skills for any supported platform.
  • Strict Validation: Ensure your skills meet platform requirements (YAML frontmatter, file structure).
  • Cross-Platform: Works seamlessly on Windows, macOS, and Linux.
  • Workspace Management: Initialize skill workspaces and run experimental skills locally.
  • Discovery: Fuzzy find installed skills across all global and local scopes.
  • Smart Detection: Automatically identify skills in any directory, including nested platform-specific folders.
  • Git Integration: Pull and update skills directly from remote repositories.
  • Interactive Experience: Step-by-step guides with Multi-selection support for bulk actions.
  • Configurable Paths: Override default platform paths for custom setups.
  • Onboarding: Built-in guide for AI agents to understand the codebase.

📦 Installation

npm install -g myskill

🛠️ Supported Platforms

| Platform | ID | Key Features Supported | | :--------------- | :--------- | :---------------------------------------- | | Claude Code | claude | allowed-tools, context: fork, hooks | | OpenCode | opencode | license, compatibility, metadata | | OpenAI Codex | codex | short-description metadata | | Gemini CLI | gemini | Standard skill structure |

📖 Usage Guide

Creating Skills

Create a new skill interactively:

myskill create
# Cancel anytime with Escape key or Ctrl+C

Discovering Skills

Detect skills in the current directory and platform-specific subfolders:

myskill detect

List all installed skills for a platform:

myskill list --platform claude

Sharing Skills

Install a local skill directory to the global platform path (supports auto-detection and interactive selection):

myskill install

Uninstall skills with multi-selection support:

myskill uninstall

Configuration & Help

List documentation URLs for all platforms:

myskill docs

Display onboarding guide for AI agents:

myskill onboard

Override default paths:

myskill config set claude.path "/custom/path/to/skills"
myskill config list

🔧 Command Reference

| Command | Description | Usage | Options | | ----------- | ---------------------------------------------------------------------- | --------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | | create | Create a new skill interactively or via flags. | myskill create [options] | -n, --name <name>: Skill name-p, --platform <platform>: Target platform-d, --description <description>: Skill description-s, --scope <scope>: Scope (global, project). Default: project--non-interactive: Run without interactive prompts | | list | List all installed skills for a platform. | myskill list [options] | -p, --platform <platform>: Filter by platform | | platforms | List all supported platforms. | myskill platforms | None | | detect | Detect skills in directory and platform folders. | myskill detect [path] | [path]: Path to directory to scan (default: current directory) | | docs | List documentation URLs for all platforms. | myskill docs | None | | onboard | Display onboarding guide for AI agents. | myskill onboard | None | | find | Find skills by name or description with fuzzy search. | myskill find [query] [options] | [query]: Search query-p, --platform <platform>: Filter by platform | | validate | Validate a skill's structure and frontmatter against platform schemas. | myskill validate [path] [options] | [path]: Path to skill directory. Default: current directory-p, --platform <platform>: Validate against specific platform | | run | Run a skill script (experimental). | myskill run <skill> [args...] | <skill>: Skill name or path[args...]: Arguments to pass to the skill script | | install | Install a local skill to the global platform path. | myskill install [path] [options] | [path]: Path to skill directory (optional - auto-detects if omitted)-p, --platform <platform>: Target platform-f, --force: Force overwrite--non-interactive: Run without prompts | | pull | Pull (clone/update) a skill from a Git repository. | myskill pull <repoUrl> [options] | <repoUrl>: Repository URL-p, --platform <platform>: Target platform-n, --name <name>: Custom skill name--non-interactive: Skip prompts | | convert | Convert a skill from one platform format to another. | myskill convert <path> [options] | <path>: Path to source skill-t, --to <platform>: Target platform-f, --force: Force overwrite--non-interactive: Fail if output exists | | uninstall | Uninstall one or more skills from global or local paths. | myskill uninstall [name] [options] | [name]: Skill name (optional - triggers multi-select if omitted)-p, --platform <platform>: Platform context--non-interactive: Skip confirmation | | config | Manage configuration settings (e.g., custom paths). | myskill config <action> [key] [value] | <action>: Action (get, set, list)[key]: Config key (e.g., claude.path)[value]: Config value (for set) | | doctor | Check system health (Git, permissions, paths). | myskill doctor | None |

🗺️ Roadmap

  • [ ] Ecosystem & Sharing: Implement myskill publish to upload skills to a central registry (S3, GitHub Packages, or a custom index).
  • [ ] Generate from Prompt: myskill create --prompt "A skill that checks AWS S3 buckets". Use an LLM API to generate the SKILL.md content and initial script code.