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

@dev-skills/ai-coding-skills

v1.0.5

Published

AI 编程助手规范 Skills 集合,包含代码输出协议、代码书写规范与 Git 提交规范。

Readme

ai-coding-skills

AI 编程助手规范 Skills 集合,兼容 Antigravity、Cursor、Windsurf 等主流 AI IDE。

包含 Skills

| Skill | 描述 | |---|---| | code-output-style-protocol | 强制纯净代码输出模式,抑制解释性文本与无关 Markdown | | coding-style-convention | 代码书写规范:命名、缩进、语法、Diff 优化 | | git-commit-formatter | 生成符合 Conventional Commits 规范的中文 Git 提交信息 |


使用方式

交互式安装(推荐)

npx @dev-skills/ai-coding-skills

执行后进入安装向导,会自动探测项目中已有的 agent 目录(.agent / .agents / _agent / _agents)并提示确认,直接回车使用默认值

[ai-skills] AI Coding Skills 安装向导

请输入安装目录(直接回车使用默认值 ".agent/skills"):
> 

指定目录(静默安装)

# 安装到 Cursor 规范目录
npx @dev-skills/ai-coding-skills --dir .cursor/skills

# 安装到自定义路径(支持相对路径和绝对路径)
npx @dev-skills/ai-coding-skills -d /path/to/your/project/.agent/skills

安装后目录结构

your-project/
└── .agent/
    └── skills/
        ├── code-output-style-protocol/
        │   └── SKILL.md
        ├── coding-style-convention/
        │   └── SKILL.md
        └── git-commit-formatter/
            └── SKILL.md

各 Skill 说明

code-output-style-protocol

激活后 AI 进入"纯净代码模式":

  • 禁止输出客套话("好的"、"Sure")
  • 禁止解释代码逻辑
  • 禁止中途询问"是否继续"
  • 多文件按顺序输出,文件间无分隔文字

coding-style-convention

强制统一代码风格:

  • Tab 缩进,宽度 2 空格
  • 无分号
  • 无尾逗号
  • 单引号优先
  • 命名规范(camelCase / PascalCase / UPPER_SNAKE_CASE / kebab-case)
  • 禁止 any,使用 unknown

git-commit-formatter

生成符合 Conventional Commits 规范的中文提交信息:

feat(auth): 新增微信一键登录
fix(order): 修复金额精度丢失问题

兼容性

| AI 工具 | 支持 | |---|---| | Antigravity | ✅ | | Cursor | ✅ | | Windsurf | ✅ | | GitHub Copilot Chat | 部分 |