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

@overdoseamp/skill-cli

v1.3.0

Published

Manage and share AI agent skills across coding tools (Claude Code, Cursor, OpenCode)

Downloads

403

Readme

@overdoseamp/skill-cli

一个管理和分享 AI agent 技能的 CLI 工具,支持将技能安装到 Claude CodeCursorOpenCode 等 AI 编程工具中。

安装

npm install -g @overdoseamp/skill-cli

快速开始

# 查看所有可用技能
skill list

# 扫描本地已有的技能文件
skill scan

# 安装技能到目标工具
skill install

命令一览

| 命令 | 快捷方式 | 说明 | |------|---------|------| | skill list | skill -l | 列出所有可用技能 | | skill add [file] | — | 添加技能(从文件、目录导入,或交互式创建) | | skill scan | skill -s | 扫描本地已有的技能文件,多选添加 | | skill search <keyword> | skill -f <keyword> | 搜索技能(按名称、描述、内容匹配) | | skill install [name] | skill -i | 安装技能到目标工具目录 | | skill remove <name> | — | 移除一个技能 |

使用说明

添加技能

# 从文件添加
skill add my-skill.md

# 从目录批量导入
skill add --dir ./my-skills/

# 交互式创建
skill add

技能文件为 Markdown 格式,需包含 YAML frontmatter:

---
name: my-skill
description: 技能描述
---

# 技能内容

这里是技能的 Markdown 正文。

扫描本地技能

skill scan

自动扫描以下位置的技能文件:

  • ~/.claude/skills/ — Claude Code 全局技能
  • ~/.cursor/skills-cursor/ — Cursor 全局技能
  • ~/.opencode/agents/ — OpenCode 全局技能
  • 当前目录下的 .claude/skills/.cursor/rules/.cursor/skills-cursor/.opencode/agents/

扫描结果支持实时搜索过滤和多选添加。

安装技能到工具

# 交互式选择技能、目标工具和安装范围
skill install

# 指定技能名
skill install my-skill

# 指定目标工具和范围
skill install my-skill --tool claude-code --scope global

# 安装所有技能
skill install --all --tool cursor --scope project

支持的目标工具和安装路径:

| 工具 | 全局路径 | 项目级路径 | |------|---------|-----------| | Claude Code | ~/.claude/skills/ | .claude/skills/ | | Cursor | ~/.cursor/rules/ | .cursor/rules/ | | OpenCode | ~/.opencode/agents/ | .opencode/agents/ |

搜索技能

skill search typescript
# 或
skill -f typescript

按名称、描述、内容进行关键词匹配,高亮显示匹配结果。

移除技能

skill remove my-skill

# 跳过确认提示
skill remove my-skill --force

技能存储

  • 用户技能:存储在 ~/.skill-cli/skills/,通过 skill add 添加,不受包更新影响
  • 预置技能:随 npm 包发布,更新包时自动获取最新预置技能

License

MIT