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

fengming

v0.3.12

Published

Multi-channel AI gateway with extensible messaging integrations

Downloads

3,262

Readme

🦞 FengMing — 个人 AI 助手

FengMing 是基于 OpenClaw Fork 的国内优化版本,面向中文用户,专注于你真正需要的功能。

🎯 支持

| 类别 | 支持项 | | -------------- | ------------------------------------------------ | | 消息渠道 | QQ、飞书、微信 | | 模型提供商 | 豆包 (BytePlus)、通义千问 (Qwen)、混元 (Tencent) | | 运行环境 | Linux (推荐 WSL2)、Windows |

📦 安装

环境要求:Node.js >= 22.16.0

方式一:npm 全局安装

npm install -g fengming
fengming gateway install
fengming gateway start

方式二:一键安装脚本

curl -fsSL https://gitee.com/lv06/fengming/raw/master/scripts/install.sh | bash

安装完成后网关默认运行在 http://127.0.0.1:19712

⚙️ 配置

配置文件:~/.fengming/fengming.json

{
  agent: {
    model: "qwen/deepseek-v4",
  },
  gateway: {
    port: 19712,
    auth: { mode: "none" },
  },
}

默认 auth.mode: "none"(仅本机访问),适合个人使用。

🚀 快速开始

# 启动网关
fengming gateway start

# 查看状态
fengming gateway status

# 发送消息
fengming message send --target <目标> --message "你好"

# 和助手对话
fengming agent --message "帮我查一下天气"

📁 项目结构

~/.fengming/
├── fengming.json      # 主配置
├── workspace/         # Agent 工作区
│   ├── AGENTS.md      # Agent 行为规则
│   ├── SOUL.md        # 人设定义
│   └── MEMORY.md      # 长期记忆
└── skills/            # 技能包

🔧 从源码构建

git clone https://github.com/24K06/FengMing.git
cd FengMing

pnpm install
pnpm build
pnpm ui:build

⚠️ Windows 上构建可能因内存不足失败,建议在 WSL2 ext4 文件系统下构建。

📄 命令参考

| 命令 | 说明 | | -------------------------------------------------- | -------------- | | fengming gateway start | 启动网关 | | fengming gateway stop | 停止网关 | | fengming gateway status | 网关状态 | | fengming gateway install | 注册为系统服务 | | fengming agent --message <msg> | 发送消息给助手 | | fengming message send --target <t> --message <m> | 发送消息到渠道 | | fengming onboard | 初始化配置向导 |

🌐 仓库

  • GitHub(主仓库):https://github.com/24K06/FengMing
  • Gitee(国内镜像):https://gitee.com/lv06/fengming
  • npm:https://www.npmjs.com/package/fengming

🙏 致谢

FengMing 基于 OpenClaw 构建,感谢原作者的出色工作。

📜 许可证

MIT