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

@raphaellcs/starter

v1.0.0

Published

OpenClaw 技能快速启动器 - 一键生成技能骨架

Downloads

88

Readme

@claw-dev/starter

OpenClaw 技能快速启动器 - 一键生成技能骨架,支持格式验证

🚀 快速开始

交互式创建

npx @claw-dev/starter

命令行创建

# 基础模板
npx @claw-dev/starter create my-skill

# NPM 模块模板
npx @claw-dev/starter create my-skill -t npm

# TypeScript 模板
npx @claw-dev/starter create my-skill -t typescript

# 完整选项
npx @claw-dev/starter create my-skill \
  --template typescript \
  --description "一个很棒的技能" \
  --emoji "⚡" \
  --author "你的名字"

📦 模板

| 模板 | 说明 | |------|------| | basic | 基础模板 - 最小结构,只需 SKILL.md | | npm | NPM 模块模板 - 包含 package.json,可发布到 npm | | typescript | TypeScript 模板 - 类型安全,适合复杂技能 |

📁 生成结构

Basic 模板

my-skill/
├── SKILL.md          # 技能定义文件
└── scripts/          # 脚本目录(空)

NPM 模板

my-skill/
├── SKILL.md
├── package.json      # NPM 配置
├── index.js          # 入口文件
└── scripts/

TypeScript 模板

my-skill/
├── SKILL.md
├── package.json
├── tsconfig.json     # TypeScript 配置
├── src/
│   └── index.ts      # TypeScript 源码
└── dist/             # 编译输出(自动生成)

✅ 验证技能

验证已生成的 SKILL.md 是否符合 OpenClaw 格式要求:

# 验证当前目录
npx @claw-dev/starter validate

# 验证指定路径
npx @claw-dev/starter validate /path/to/skill/SKILL.md

验证检查项:

  • ✅ 必需字段(name, description)
  • ✅ Metadata 部分
  • ✅ 至少一个实现章节

🎨 SKILL.md 格式

生成的 SKILL.md 包含以下元数据:

---
name: MySkill
description: 技能描述
metadata:
  {
    "openclaw": { "emoji": "🤖", "requires": {} },
  }
---

📚 学习更多

🤝 贡献

欢迎提交 Issue 和 PR!

📄 许可证

MIT © 梦心


Made with 🌙 by 梦心