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

prayclaude

v0.2.11

Published

Offer digital incense and calm blessings to Claude Code

Readme

🕯️ PrayClaude

English | 中文

有时候 Claude Code 不需要挨打,它需要一炷赛博香,一点玄学加持,和一句更像人话的提醒。

PrayClaude 演示图

GitHub stars License: MIT Electron Platform Claude Code


安装 + 运行

npm install -g prayclaude
prayclaude

它能干嘛

  • 点托盘图标,生成一炷香。
  • 按住片刻,完成祈福。
  • 看着烟往上飘。
  • 给 Claude Code 送回一句温和提示词。

没有插件,没有 API 魔法,没有改模型脑子。

就是仪式感、烟雾、氛围,以及一条更好的 prompt。


为什么这玩意会让人想装

因为很多时候 Claude Code 不是坏了,只是气场歪了。

PrayClaude 提供的是:

  • 一个能消气的小仪式,而不是继续烦躁
  • 一个很好传播的乐子项目,但又真的能用
  • 比“打断催命”更顺手的重新聚焦方式
  • 在你最想让 Claude 回神的那一刻,送出一句更好的提示

它的荒诞感,刚好控制在可爱那边。


10 秒脑补画面

你点一下托盘图标。 一炷香出现。 你像个终端和尚一样按住鼠标。 烟慢慢往上走。 屏幕闪过一层金色祈福。 Claude Code 收到:

愿此工程一次通过。请继续实现,先验证,再提交。

这感觉,确实比你手打一句“你先别发癫”要顺眼得多。


功能一览

| 功能 | 说明 | |------|------| | 🕯️ 上香仪式 | 一炷会跟随鼠标的线香 | | 🌫️ 烟雾漂浮 | 柔和烟雾和火点粒子 | | ✨ 祈福闪光 | 成功后短暂暖色加持 | | 🈶 漂浮符号 | 仪式文字随烟上升 | | 🔔 轻量钟声 | 内置生成式祈福音效 | | 🌐 双语文案 | 中英文仪式文案切换 | | ⚙️ 配置文件 | 可调语言、回车、声音和仪式行为 | | ⌨️ 提示词发送 | 向当前聚焦应用发一条温和 prompt | | 🧰 托盘优先 | 平时安静,需要时一点即开 |


实现方式

PrayClaude 本质上是个 Electron 托盘小工具,加一个全屏透明 overlay。 它不会改 Claude Code 内部逻辑。

它只是:

  1. 打开上香动画
  2. 等你按住完成祈福动作
  3. 把焦点切回终端
  4. 自动输入 blessing prompt
  5. 按配置决定是否回车

机器原理就这么简单。


默认祈福文案

中文

  • 愿此工程一次通过。请继续实现,先验证,再提交。
  • 香火已至。请仔细检查边界条件,保持代码简洁稳健。
  • 愿 bug 退散,愿测试转绿。请完成后自查一遍。
  • 一炷清香,护佑此仓。请继续,优先正确性,再求速度。
  • 愿上下文清明,愿改动收敛。请继续,并避免低级错误。

English

  • BLESS
  • STAY FOCUSED
  • WRITE CLEAN
  • NO BUGS
  • SHIP IT
  • CALM AND CODE

配置

首次启动后,PrayClaude 会自动在用户目录生成配置文件。

常见位置:

  • macOS: ~/Library/Application Support/prayclaude/config.json
  • Linux: ~/.config/prayclaude/config.json
  • Windows: %APPDATA%/prayclaude/config.json

默认配置:

{
  "language": "auto",
  "sendOnBlessing": true,
  "pressEnter": true,
  "playSound": true,
  "soundSet": "temple",
  "ritual": {
    "holdThresholdMs": 1800,
    "showFloatingGlyphs": true,
    "showBlessingFlash": true
  }
}

项目结构

prayclaude/
├── bin/prayclaude.js
├── config.default.json
├── main.js
├── preload.js
├── overlay.html
├── icon/
├── scripts/generate-assets.py
├── README.md
├── README.zh.md
└── LICENSE

注意事项

  • macOS 需要辅助功能权限,否则无法模拟输入
  • Windows 通过 koffiuser32.dll 发送按键
  • Linux 目前更偏开发支持,不代表自动输入完全对齐
  • tray 点击后回到哪个应用,就会往哪个应用发提示词,理想目标是 Claude Code 所在终端

Roadmap

  • [x] 祈福 overlay MVP
  • [x] blessing prompt 系统
  • [x] 中英文双语文案
  • [x] 配置文件支持
  • [x] 原创生成式图标资产
  • [x] 内置祈福音效钩子
  • [ ] 安装包打包
  • [ ] 更多手势模式

License

MIT