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

inskills

v0.1.1

Published

Install agent skills from GitHub repositories into Codex or Claude Code.

Readme

inskills

English | 简体中文

从 GitHub 仓库把 agent skills 安装到 Codex 或 Claude Code 的 npx 工具。

功能

  • 克隆 GitHub 仓库。
  • 发现 SKILL.mdskills/**/SKILL.md
  • 选择一个、多个或全部 skills。
  • 安装到 Codex、Claude Code,或两者都安装。
  • 安装到 Claude Code 时,自动省略 Codex 专用的 agents/ 元数据。

Quickstart

npx inskills@latest add owner/repo

示例:

npx inskills@latest add Redbean3/credit-card-bill-analysis-skills
npx inskills@latest add Redbean3/credit-card-bill-analysis-skills --all
npx inskills@latest add mattpocock/skills --skill tdd --codex
npx inskills@latest add owner/repo#v1.0.0 --claude-code

常用参数

--ref <ref>                 指定 Git ref、分支或 tag。
--ssh                       使用 SSH 克隆 GitHub 仓库,而不是 HTTPS。
--codex                     只安装到 Codex。
--claude-code               只安装到 Claude Code。
--all, --all-agents         同时安装到 Codex 和 Claude Code。
-s, --skill <name>          按名称安装一个 skill,可重复传入。
--skills <a,b>              按逗号分隔安装多个 skills。
--all-skills                不交互,安装发现到的所有 skills。
--codex-skills-dir <path>   Codex skills 目录,默认 ${CODEX_HOME:-~/.codex}/skills。
--claude-skills-dir <path>  Claude Code skills 目录,默认 ${CLAUDE_HOME:-~/.claude}/skills。
--force                     覆盖已有 skill 目录。
--dry-run                   只展示操作,不写入文件。
--keep-temp                 保留临时克隆目录,方便调试。

仓库结构

可以在仓库根目录放一个 skill:

.
└── SKILL.md

也可以在 skills/ 下放一个或多个 skills:

.
└── skills/
    ├── skill-a/
    │   └── SKILL.md
    └── category/
        └── skill-b/
            └── SKILL.md

安装目标

Codex:

${CODEX_HOME:-~/.codex}/skills/<skill-name>

Claude Code:

${CLAUDE_HOME:-~/.claude}/skills/<skill-name>

License

MIT