feishu-multi-agent

飞书多 Agent 系统搭建指南。当用户要求创建新的功能 Agent、配置飞书群聊绑定、 搭建多 Agent 协作系统时激活此 skill。 触发词:创建 agent、新建 agent、添加 agent、create agent、多 agent、飞书绑定。

227 stars

Best use case

feishu-multi-agent is best used when you need a repeatable AI agent workflow instead of a one-off prompt.

飞书多 Agent 系统搭建指南。当用户要求创建新的功能 Agent、配置飞书群聊绑定、 搭建多 Agent 协作系统时激活此 skill。 触发词:创建 agent、新建 agent、添加 agent、create agent、多 agent、飞书绑定。

Teams using feishu-multi-agent should expect a more consistent output, faster repeated execution, less prompt rewriting.

When to use this skill

  • You want a reusable workflow that can be run more than once with consistent structure.

When not to use this skill

  • You only need a quick one-off answer and do not need a reusable workflow.
  • You cannot install or maintain the underlying files, dependencies, or repository context.

How feishu-multi-agent Compares

Feature / Agentfeishu-multi-agentStandard Approach
Platform SupportNot specifiedLimited / Varies
Context Awareness High Baseline
Installation ComplexityUnknownN/A

Frequently Asked Questions

What does this skill do?

飞书多 Agent 系统搭建指南。当用户要求创建新的功能 Agent、配置飞书群聊绑定、 搭建多 Agent 协作系统时激活此 skill。 触发词:创建 agent、新建 agent、添加 agent、create agent、多 agent、飞书绑定。

Where can I find the source code?

You can find the source code on GitHub using the link provided at the top of the page.

SKILL.md Source

# 飞书多 Agent 系统

## 你要做什么

帮用户搭建「一个飞书 Bot → 多个独立 AI Agent」的系统。每个 Agent 绑定一个飞书群聊,互相独立,可以通信。

## 读取顺序(严格按顺序)

**第一步:理解架构**
```
read("INDEX.md")       # 文档索引
read("01-architecture.md")  # 架构设计
```
读完你会知道:binding、session、agent 间通信的概念。

**第二步:收集用户信息**
```
read("10-setup-wizard.md")
read("examples/PLACEHOLDERS.md")
```
读完按 Phase 1 的问卷向用户收集信息。`PLACEHOLDERS.md` 列出了所有需要用户提供的字段。不要跳过任何问题。

**第三步:执行创建**
用户回答完问题后,运行创建脚本:
```
read("scripts/create_agent.py")
exec("python3 scripts/create_agent.py --agent-id xxx --role xxx ...")
```

**第四步:按需深入**
- 用户问飞书权限 → `read("02-feishu-setup.md")`
- 用户问 Agent 绑定 → `read("03-agent-binding.md")`
- 用户问 Agent 通信 → `read("04-agent-communication.md")`
- 用户问飞书文档 → `read("05-feishu-doc.md")`
- 用户问群聊管理 → `read("06-feishu-chat-management.md")`
- 用户问消息格式 → `read("07-feishu-message-format.md")`
- 用户问 skill 组织 → `read("08-skill-organization.md")`
- 用户问最佳实践 → `read("09-best-practices.md")`

## ⚠️ 关键注意事项

1. **不要一次读所有文件** — 按需读取,节省上下文
2. **不要跳过信息收集** — 缺少 app_id/open_id 后面全部会失败
3. **修改 openclaw.json 必须包含所有 Agent** — agents.list 是整体替换,遗漏 = 丢失
4. **创建群聊后必须注册** — 加 binding + groups 配置 + 重启 gateway
5. **Bot 创建的文档必须授权** — 否则用户看不到

## 🔧 项目维护(仅供维护者)

**如果你要修改项目本身(如添加新 Agent、修改配置格式、更新文档),必须先阅读:**

```
read("skills/maintenance/SKILL.md")
read("skills/maintenance/references/project-maintenance.md")
```

⚠️ **开发原则**(强制遵守):
- 强制脱敏:模型 ID、内部事故记录、真实路径、API Key 等均为敏感信息,示例中用占位符
- 内容通用性:开源内容面向所有用户,不包含特定团队的内部信息
- 提交前必须运行脱敏检查:`python3 scripts/check_sensitive.py`

违反原则的提交将被拒绝合并。

Related Skills

feishu-doc-writer

227
from hyperlist/feishu-multi-agent

Feishu document writing skill. Handles known API pitfalls (block ordering, unsupported formats). Activate when writing content into Feishu docs or creating structured documents.

feishu-chat

227
from hyperlist/feishu-multi-agent

飞书群聊管理:创建群、添加/移除成员、修改群信息。需要 exec 权限执行 curl 命令。

Maintenance Skill

227
from hyperlist/feishu-multi-agent

飞书多 Agent 项目维护指南 - 仅供维护 feishu-multi-agent 项目时使用。

delegate-agent

227
from hyperlist/feishu-multi-agent

Delegate tasks to agents asynchronously. Triggers on "让XX做", "delegate to", "assign to", "派发", "布置任务".

Config Update Skill

227
from hyperlist/feishu-multi-agent

OpenClaw 配置安全更新指南。

agent-comm

227
from hyperlist/feishu-multi-agent

跨 Agent 通信。当用户说"问XX"、"让XX做"、"发给XX"、"check agent status"时使用。

project-switcher

227
from hyperlist/feishu-multi-agent

多项目管理和目录切换。用户发送 /repo 时列出项目,选择后切换工作目录。 适用于 coder agent 同时维护多个代码仓库的场景。

git-workflow

227
from hyperlist/feishu-multi-agent

Git 工作流规范。管理分支、commit、PR 的标准流程。 用户发送 /git 或涉及版本控制操作时触发。

code-review

227
from hyperlist/feishu-multi-agent

代码审查技能。用户发送 /review 或要求 review 时触发。 自动检查代码质量、安全问题、架构建议。

compose-multiplatform-patterns

144923
from affaan-m/everything-claude-code

KMP项目中的Compose Multiplatform和Jetpack Compose模式——状态管理、导航、主题化、性能优化和平台特定UI。

multi-platform-apps-multi-platform

31392
from sickn33/antigravity-awesome-skills

Build and deploy the same feature consistently across web, mobile, and desktop platforms using API-first architecture and parallel implementation strategies.

Software DevelopmentClaude

multi-cloud-architecture

31392
from sickn33/antigravity-awesome-skills

Decision framework and patterns for architecting applications across AWS, Azure, and GCP.

Cloud ArchitectureClaude