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

@yz-xingtu/agent-rules

v0.1.1

Published

将团队 AI Agent 规则和技能同步到各厂商规则目录。

Readme

@yz-xingtu/agent-rules

从项目仓库的 .agent/ 元结构生成各 AI 编程工具可识别的规则、技能和本地入口文件,避免长期手工维护多套重复目录。

使用方式

在项目仓库根目录运行:

npx -y @yz-xingtu/agent-rules@latest init
npx -y @yz-xingtu/agent-rules@latest sync
npx -y @yz-xingtu/agent-rules@latest doctor

如果已经全局安装,也可以直接使用 agent-rules

npm install -g @yz-xingtu/agent-rules
agent-rules init

命令

init

初始化当前使用者和 Agent 厂商:

npx -y @yz-xingtu/agent-rules@latest init --agents=codex,claude,cursor,qoder

init 会生成本地 AGENTS.md,并按 --agents 选择生成 CLAUDE.md.cursor/.qoder/ 等厂商文件,同时配置当前仓库的 git user.nameuser.emailgithub.user

sync

.agent/ 源结构刷新生成物:

npx -y @yz-xingtu/agent-rules@latest sync

sync 会刷新 AGENTS.md 和已存在的 CLAUDE.md。厂商目录默认按当前项目已存在的 .cursor/.qoder/ 推断;如果项目还没有厂商目录,需要显式指定:

npx -y @yz-xingtu/agent-rules@latest sync --target=qoder,cursor

doctor

检查当前生成物是否与 .agent/ 源结构一致:

npx -y @yz-xingtu/agent-rules@latest doctor

源结构

项目需要在仓库根目录维护 .agent/

.agent/rules/       团队规则源
.agent/skills/      通用技能源
.agent/team/        团队成员和角色信息
.agent/adapters/    厂商输出适配配置
.agent/templates/   AGENTS.md / CLAUDE.md 模板

AGENTS.mdCLAUDE.md.cursor/.qoder/ 等通常是本地生成物,建议加入项目 .gitignore

发布

这是 npm scoped public 包。首次发布或后续发布公开版本时使用:

npm publish --access public

发布前建议检查:

npm run check
npm pack --dry-run