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

cowdevibe

v0.1.21

Published

Cowde project generator and Vibe Coding rules installer

Readme

cowde

Cowde 是一个项目代码仓库和 Vibe Coding 规范生成器。

当前命令

npx cowdevibe init usercenter
npx cowdevibe init -t java usercenter
npx cowdevibe init -t vue usercenter
npx cowdevibe update usercenter
npx cowdevibe check
npx cowdevibe skill
npx cowdevibe skill -f

代码生成器会根据项目名称生成:

  • <name>-service
  • <name>-web
  • CODINGRULE.md
  • coding/backend/RULE.md
  • coding/frontend/RULE.md

Vue 模板会同时生成 .env.development.env.production,默认使用 /api 请求前缀且不启用预览模式。

初始化后会在 .cowde/manifest.json 写入模板版本、服务端口(默认 8080)和前端端口(默认 5173)。需要调整端口时直接编辑 manifest,再执行 updatecheck 命令会校验 manifest 和端口配置。

skill 会将 templates/skills 中的 Agent Skill 安装到当前目录的 .agents/skills/。目标中存在同名 Skill 时默认报错;使用 skill -f 才会覆盖。

update 使用初始化时生成的 .cowde/manifest.json 识别代码基线:固定规范文档始终覆盖;新模板文件直接添加;用户未修改的代码和配置文件更新;用户修改且模板也变化时保留原文件,并生成同目录的 _update 候选文件。模板删除的旧文件不会自动删除。

再次执行 init 时,如果当前目录已有 .cowde/manifest.json,会先校验 manifest,再按上述更新策略合并模板,不会因为已有模块目录直接拒绝。

发布 NPM

Windows 下可以使用:

npm run release

发布脚本会依次执行测试、预览发布内容、检查 NPM 登录状态和发布。第一次使用或登录状态失效时,会进入 npm login 官方交互式登录流程;不要把 NPM 密码写入脚本、项目文件或命令行参数。

默认发布前自动执行 patch 版本升级,例如 0.1.0 升为 0.1.1

需要发布功能版本时,可以显式指定版本升级类型:

npm run release -- -VersionBump patch

已发布过的版本不能重复覆盖。如果看到 You cannot publish over the previously published versions,使用上面的版本更新命令;当前 0.1.0 已发布,下一次应使用 patch 发布 0.1.1

Java 包名固定以 cn.cowde.<project-name> 为基础,并由生成器负责处理项目名称转换。