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

refly-bot

v1.0.4

Published

A powerful multi-platform chatbot powered by Refly.ai

Readme

Refly Bot

English | 简体中文

基于 Refly.ai 的强大多平台聊天机器人。


📋 准备工作

在运行机器人之前,你需要准备好飞书/Lark 的应用凭证以及 Refly.ai 的 API Key。

👉 点击查看:Key 获取指引


🚀 极速启动与配置

请在终端 (Terminal)PowerShellCMD 中根据网络环境选择运行。

方法 A:一行代码直接运行 (最快)

复制下方命令启动(请替换 xxx 为你的实际密钥):

  • 🍎 Mac / 🐧 Linux:
    curl -sSL 'https://ghproxy.net/https://raw.githubusercontent.com/refly-ai/refly-bot/main/run.sh?version=2' | APP_ID=xxx APP_SECRET=xxx REFLY_API_KEY=xxx bash
  • 🪟 Windows (PowerShell):
    $env:APP_ID="xxx"; $env:APP_SECRET="xxx"; $env:REFLY_API_KEY="xxx"; iwr 'https://ghproxy.net/https://raw.githubusercontent.com/refly-ai/refly-bot/main/run.bat?version=2' -OutFile run.bat; .\run.bat
  • 🪟 Windows (CMD):
    set APP_ID=xxx& set APP_SECRET=xxx& set REFLY_API_KEY=xxx& curl -L "https://ghproxy.net/https://raw.githubusercontent.com/refly-ai/refly-bot/main/run.bat?version=2" -o run.bat && run.bat

方法 B:保存配置后运行 (推荐)

如果你想永久保存配置,避免每次输入,请先运行下方命令创建配置文件:

  • Windows (PowerShell/CMD):
    New-Item -ItemType Directory -Force -Path "$HOME\.refly"; '{"APP_ID":"ID","APP_SECRET":"KEY","REFLY_API_KEY":"AIKEY"}' | Out-File -FilePath "$HOME\.refly\refly-bot.json" -Encoding utf8
  • Mac / Linux:
    mkdir -p ~/.refly && echo '{"APP_ID":"ID","APP_SECRET":"KEY","REFLY_API_KEY":"AIKEY"}' > ~/.refly/refly-bot.json

配置完成后,未来再次运行上述启动指令(无需带参数)即可直接启动。


⭐ 喜欢这个项目吗?

如果你觉得这个机器人对你有帮助,请给我们的项目点个 Star!这是对我们最大的支持和鼓励。

👉 点击这里前往 GitHub 点赞


由 Refly 社区用 ❤️ 制作