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

@jbts6/claude-skills

v1.0.0

Published

Custom Claude Code skills collection

Readme

Claude Code Skills

自定义 Claude Code skills 集合。

安装方法

方法零:使用 npx(最简单)

# 安装所有 skills
npx @jbts6/claude-skills --all

# 安装特定 skill
npx @jbts6/claude-skills --skill godot-rag

# 查看可用 skills
npx @jbts6/claude-skills --list

方法一:克隆整个仓库(推荐)

# 克隆到本地
git clone https://github.com/jbts6/skills.git ~/.claude/skills

# 或者如果你已经有 ~/.claude/skills 目录,可以只克隆子目录
cd ~/.claude
git remote add skills https://github.com/jbts6/skills.git
git fetch skills
git checkout skills/main -- godot-rag grill-rounds

方法二:单独安装某个 skill

# 创建 skills 目录(如果不存在)
mkdir -p ~/.claude/skills

# 克隆仓库到临时目录
git clone https://github.com/jbts6/skills.git /tmp/skills

# 复制你需要的 skill
cp -r /tmp/skills/godot-rag ~/.claude/skills/

# 清理临时文件
rm -rf /tmp/skills

方法三:使用 Git Sparse Checkout(高级)

# 创建目录并初始化
mkdir -p ~/.claude/skills
cd ~/.claude/skills
git init
git remote add origin https://github.com/jbts6/skills.git

# 启用 sparse checkout
git sparse-checkout init
git sparse-checkout set godot-rag  # 添加你需要的 skill

# 拉取代码
git pull origin main

可用 Skills

godot-rag

用途:在编写、调试或研究任何 Godot Engine 代码时使用。

功能

  • 搜索 Godot 官方文档(类参考、教程、引擎细节)
  • 搜索 addon 文档和示例
  • 按类型精确搜索(s-class, s-tutorial, s-engine, s-addon
  • 列出已索引的 addon(addons 命令)

依赖

  • Python 3.9+
  • godot-rag 包:pip install godot-rag

数据库覆盖

  • 30,529 个 chunk(28,231 个 Godot 文档 + 2,298 个 addon chunk)
  • 9 个 addon:dialogue_manager, doctor, gdUnit4, input_helper, limboai, phantom-camera, scene_manager, sound_manager, statecharts

使用示例

# 列出可用 addon
godot-rag addons

# 搜索类参考
godot-rag s-class "Node.add_child"

# 搜索教程
godot-rag s-tutorial "how to use signals"

# 搜索 addon 文档
godot-rag s-addon "state machine" --addon statecharts

# JSON 输出(供 AI agent 使用)
godot-rag s-class "Timer" --json

grill-rounds

(请在此处添加 grill-rounds skill 的说明)

更新 Skills

cd ~/.claude/skills
git pull origin main

贡献

  1. Fork 本仓库
  2. 创建你的 skill 目录(包含 SKILL.md
  3. 提交 Pull Request

License

MIT