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

@chada007/openclaw-feishu

v1.0.7

Published

OpenClaw Feishu Edition - Personal AI Assistant for Feishu

Downloads

927

Readme

🦞 OpenClaw 飞书版 — 个人 AI 助手

项目介绍

OpenClaw 飞书版 是基于 OpenClaw 的专用变体,专门为飞书(Feishu)优化。

这个版本:

  • 飞书预配置 — 开箱即用,无需复杂配置
  • 精简专注 — 移除了其他消息渠道,只保留飞书集成
  • 完整功能 — 保留 OpenClaw 的所有核心 AI 助手功能
  • 本地运行 — 在自己的设备上运行,完全私密

核心功能

  • 🤖 AI 助手 — 通过飞书与 Claude/GPT 对话
  • 🎯 智能回复 — 支持长上下文、思考链、工具调用
  • 🔌 可扩展 — 支持自定义技能和工具集成
  • 🎨 Canvas 渲染 — 实时交互式画布支持
  • 🔐 隐私优先 — 所有数据本地处理,无云存储

快速开始

系统要求

  • Node.js ≥ 22
  • macOS / Linux / Windows (WSL2)

安装

# 克隆项目
git clone https://github.com/shygoly/openclaw-feishu.git
cd openclaw-feishu

# 安装依赖
pnpm install

# 构建项目
pnpm build

# 运行初始化向导
pnpm openclaw onboard --install-daemon

配置飞书

  1. 获取飞书凭证

  2. 配置 OpenClaw

    openclaw config set feishu.appId "YOUR_APP_ID"
    openclaw config set feishu.appSecret "YOUR_APP_SECRET"
  3. 启动网关

    openclaw gateway --port 18789

使用示例

# 通过飞书发送消息
openclaw message send --to "@user" --message "Hello from OpenClaw"

# 与 AI 助手对话
openclaw agent --message "帮我总结一下今天的会议" --thinking high

# 查看频道状态
openclaw channels status --probe

开发

项目结构

openclaw-feishu/
├── src/
│   ├── feishu/           # 飞书集成核心代码
│   ├── channels/         # 频道管理
│   ├── cli/              # CLI 命令
│   ├── commands/         # 命令实现
│   └── ...
├── extensions/
│   └── feishu/           # 飞书扩展插件
├── docs/
│   └── channels/
│       └── feishu.md     # 飞书文档
└── package.json

常用命令

# 类型检查和构建
pnpm build

# 运行测试
pnpm test

# 代码检查和格式化
pnpm lint
pnpm format

# 开发模式(自动重载)
pnpm gateway:watch

# 运行 CLI
pnpm openclaw <command>

配置

基本配置

编辑 ~/.openclaw/config.json 或使用 CLI:

# 设置 AI 模型
openclaw config set model.provider anthropic
openclaw config set model.name claude-opus-4-5

# 设置飞书
openclaw config set feishu.appId "YOUR_APP_ID"
openclaw config set feishu.appSecret "YOUR_APP_SECRET"

环境变量

# 飞书配置
export FEISHU_APP_ID="your_app_id"
export FEISHU_APP_SECRET="your_app_secret"

# AI 模型
export ANTHROPIC_API_KEY="your_api_key"
# 或
export OPENAI_API_KEY="your_api_key"

文档

支持的 AI 模型

Anthropic

  • Claude 3.5 Sonnet
  • Claude 3.5 Haiku
  • Claude Opus 4.5

OpenAI

  • GPT-4o
  • GPT-4 Turbo
  • GPT-3.5 Turbo

故障排除

飞书连接失败

# 检查飞书配置
openclaw config get feishu

# 查看详细日志
openclaw channels status --probe

# 运行诊断
openclaw doctor

网关无法启动

# 检查端口占用
lsof -i :18789

# 查看日志
tail -f ~/.openclaw/logs/gateway.log

# 重启网关
pkill -f openclaw-gateway
openclaw gateway --port 18789 --verbose

许可证

MIT License — 详见 LICENSE

致谢

  • 基于 OpenClaw 项目
  • 感谢所有贡献者和社区支持

相关链接


OpenClaw 飞书版 — 在飞书上运行你自己的 AI 助手 🚀