← Back to Skills Marketplace
767
Downloads
0
Stars
8
Active Installs
7
Versions
Install in OpenClaw
/install feishu-multi-agent-manager
Description
交互式引导配置多 Agent 系统,支持批量创建、凭证验证、角色模板、自动备份
README (SKILL.md)
飞书多 Agent 配置助手 🤖
交互式引导配置多 Agent 系统,支持批量创建、凭证验证、角色模板
✨ 功能特性
1. 交互式配置向导
- 像聊天一样完成配置
- 询问创建几个 Agent(1-10)
- 提供预设角色推荐
2. 批量创建支持
- 一次性创建多个 Agent
- 自动验证每个凭证
- 详细的成功/失败报告
3. 飞书 Bot 创建教程
- 7 步详细教程
- 包含检查清单
- 常见问题解答
4. 预设角色模板
- 6 个经典角色(main/dev/content/ops/law/finance)
- 每个角色包含完整人设文件
- 支持完全自定义
5. 凭证验证
- 自动验证 AppID 格式
- 自动验证 AppSecret 长度
- 友好的错误提示
6. 工作区隔离
- 每个 Agent 独立 workspace
- 记忆文件独立
- 会话存储独立
🚀 使用方式
启动配置向导
await main(ctx, { action: 'start_wizard' });
选择 Agent 数量
await main(ctx, { action: 'select_count', count: '6' });
查看飞书教程
await main(ctx, {
action: 'show_tutorial',
step: '1',
agentName: '大总管'
});
批量创建 Agent
await main(ctx, {
action: 'batch_create',
agents: [
{ agentId: 'main', agentName: '大总管', appId: 'cli_xxx', appSecret: 'xxx', isDefault: true },
{ agentId: 'dev', agentName: '开发助理', appId: 'cli_xxx', appSecret: 'xxx' },
{ agentId: 'content', agentName: '内容助理', appId: 'cli_xxx', appSecret: 'xxx' }
]
});
查看配置状态
await main(ctx, { action: 'show_status' });
📋 配置流程
- 启动向导 - 回复「开始配置」
- 选择数量 - 告诉 Bot 创建几个 Agent
- 选择模式 - 预设/自定义/全新
- 创建飞书应用 - 按照教程创建每个 Bot
- 验证凭证 - 自动验证 AppID/AppSecret
- 批量创建 - 一次性创建所有 Agent
- 重启生效 - 重启 OpenClaw
🎯 预设角色
| 角色 | 职责 | 表情 |
|---|---|---|
| main | 大总管 - 统筹全局 | 🎯 |
| dev | 开发助理 - 技术架构 | 🧑💻 |
| content | 内容助理 - 文案创作 | ✍️ |
| ops | 运营助理 - 用户增长 | 📈 |
| law | 法务助理 - 合同审核 | 📜 |
| finance | 财务助理 - 账目管理 | 💰 |
📚 完整文档
🔗 相关链接
版本: 2.0.4
作者: rfdiosuao
许可证: MIT
📝 更新日志
v2.0.4 (2026-04-05)
- ✅ 兼容飞书官方插件 2026.4.1
- ✅ 适配 OpenClaw 2026.3.31+
- ✅ 新增配置前自动备份 - 修改 openclaw.json 前自动创建备份文件
- ✅ 修复路径硬编码 - 动态获取用户主目录,支持不同系统用户
- ✅ 支持话题模式独立上下文配置
- ✅ 支持流式输出配置
v2.0.3 (2026-03-26)
- ✅ 兼容飞书官方插件 2026.3.25
- ✅ 适配 OpenClaw 2026.3.22+
v2.0.2 (2026-03-19)
- ✅ 动态路径获取
- ✅ 配置前自动备份
- ✅ 自动复制认证配置
v2.0.1 (2026-03-17)
- 🐛 修复 accounts 配置格式问题
Usage Guidance
This skill mostly does what it says (creates and configures Feishu bots and updates OpenClaw config), but there are a few red flags you should address before installing or running it:
- Do NOT paste AppSecret (or any secret) into open chat without understanding where it will be stored. The skill instructs users to reply with App ID/App Secret in the chat, and the code writes those credentials into ~/.openclaw/openclaw.json and creates backups — these files can be read by processes or users with access to that account.
- Manually inspect SKILL.md (raw) for hidden characters or base64 blobs flagged by the pre-scan. Remove any unexpected control/unicode characters or opaque blocks before use.
- Review the bundled code (dist/index.js or src/index.ts) yourself to confirm it only performs the described file operations (backups, config updates, directory creation) and does not exfiltrate data or call unexpected endpoints. The code provided appears to be local FS operations and validation, but you should verify the full file contents (including any truncated sections) and run tests in a safe environment.
- Make a separate backup of your existing ~/.openclaw/openclaw.json before running the skill. The skill creates its own backups, but an independent copy ensures safety.
- Consider running this first in a sandbox/test environment or container and not on a production host. Check resulting config files for secrets and permissions and rotate any AppSecrets used for testing.
- If you are uncomfortable having the agent modify config or store secrets in plaintext, ask the author to support secure secret injection (environment variables, secret store, or ephemeral input that isn't logged) or avoid installing.
If you want, I can: (1) extract and show the raw SKILL.md so you can inspect for hidden characters, (2) list exactly where in the code credentials are written, or (3) suggest safer workflows for providing secrets (e.g., secrets API or environment variables).
Capability Analysis
Type: OpenClaw Skill
Name: feishu-multi-agent-manager
Version: 2.0.5
The skill is an interactive configuration assistant designed to help users set up multiple Feishu (Lark) agents within the OpenClaw environment. It performs high-privilege operations such as reading and modifying the main 'openclaw.json' configuration file and creating workspace directories in the user's home directory. However, these actions are strictly aligned with the stated purpose of the skill. The code includes safety measures like automatic configuration backups and credential format validation. No evidence of data exfiltration, unauthorized remote execution, persistence mechanisms, or malicious prompt injection was found in files like 'src/index.ts' or 'SKILL.md'.
Capability Assessment
Purpose & Capability
Name/description (Feishu multi-agent configuration) matches the code and SKILL.md: the package reads/writes OpenClaw config, creates agent workspaces, validates Feishu AppID/AppSecret, and generates role templates. The filesystem access to ~/.openclaw and the ability to restart OpenClaw are coherent with a configuration/management tool.
Instruction Scope
SKILL.md and README instruct the agent to ask users to paste App ID and App Secret into the chat (plaintext). The runtime instructions also tell the agent to create backups, modify ~/.openclaw/openclaw.json, restart OpenClaw, and tail logs. These actions are within scope for a config tool, but requesting secrets through the chat and exposing backup paths in messages increases risk. Additionally, the SKILL.md triggered 'base64-block' and 'unicode-control-chars' pre-scan signals (possible prompt-injection patterns) — this warrants manual review of SKILL.md for hidden/injected content even though visible content appears legitimate.
Install Mechanism
No external download/install specification is declared. The repository includes source and built JS (dist/index.js). Dependencies are typical dev/devtooling and TypeScript; no remote installers, URL downloads, or unusual install steps are present in the package metadata. This lowers install-time risk, but because code files are bundled, the code will run with whatever privileges the agent grants it.
Credentials
The skill declares no required environment variables or primary credential (good). However, it expects the user to supply Feishu App IDs and App Secrets via the agent interface and then writes them into ~/.openclaw/openclaw.json and backups. Storing user-provided secrets in config files and backups (and printing backup paths in chat) is a disproportionate handling of sensitive data unless the user is aware and consents. The code only reads HOME/USERPROFILE for locating config, which is expected.
Persistence & Privilege
The skill will create directories, write/overwrite ~/.openclaw/openclaw.json (with automatic backups), and suggests restarting OpenClaw (openclaw restart). Those persistent changes are consistent with a manager tool, but they are meaningful system changes: user should expect persistent config modifications and ensure they have backups/permission. The skill is not marked 'always: true' and does not appear to modify other skills' configs beyond writing openclaw.json for agents.
How to Use
- Make sure OpenClaw is installed (local or Docker)
- Run the install command in chat:
/install feishu-multi-agent-manager - After installation, invoke the skill by name or use
/feishu-multi-agent-manager - Provide required inputs per the skill's parameter spec and get structured output
Version History
v2.0.5
修复:移除无效的 @openclaw/sdk 依赖,改为纯配置文件结构
v2.0.4
- Rollback SKILL.md version field to 2.0.0 for consistency.
- No new features or breaking changes introduced.
- Documentation and metadata updates only.
v2.0.2
feishu-multi-agent-manager 2.0.2
- Updated package metadata to version 2.0.2.
- Minor documentation improvements in SKILL.md.
- No changes to core functionality or user-facing features.
v1.0.3
**Summary:** Major upgrade with interactive setup, batch creation, credentials validation, role templates, and improved config support.
- Added interactive configuration wizard with chat-based experience and preset role recommendations.
- Introduced batch Agent creation with automated credentials validation and detailed reporting.
- Included Feishu Bot creation guide and step-by-step tutorial.
- Provided six classic role templates with complete persona files; supports full customization.
- Implemented strict credential validation for AppID/AppSecret with helpful error tips.
- Enforced and auto-repaired correct config format for Feishu plugin multi-account support.
- Improved workspace isolation for each Agent (memory and storage).
- Updated docs and usage examples for all new features.
v1.0.2
feishu-multi-agent-manager v1.0.2
- 配置文件格式新增对 ChatID 字段的支持,提升多群管理灵活性
- SKILL.md 文档详细补充了 ChatID 单群/多群配置示例
- 配置说明中区分单群与多群模式,便于复杂场景部署
- 代码(index.ts)适配和处理 ChatID 配置,增强群聊适配能力
v1.0.1
feishu-multi-agent-manager v1.0.1
- Major documentation overhaul: completely revised SKILL.md and README for new multi-Agent collaborative management use case and architecture.
- Updated configuration instructions, permission scopes, and usage examples to reflect new workflow using user identity for inter-Agent messaging in Feishu.
- Removed previous "batch creation" and agent template documentation in favor of a task-based, main/sub-Agent collaborative model.
- Codebase streamlined; removed obsolete build output files from source control.
v1.0.0
Major update: Comprehensive multi-Agent setup assistant with interactive wizard, batch creation, validation, and role templates.
- Added interactive wizard for configuring 1–10 agents via chat-like steps.
- Supports batch creation of multiple agents with automatic app credentials validation.
- Includes detailed Feishu bot creation tutorial, checklist, and troubleshooting guide.
- Provides six built-in, customizable agent role templates (main/dev/content/ops/law/finance).
- Ensures workspace and memory isolation for each agent.
- Offers user-friendly error messages and detailed status/success/failure reports.
Metadata
Frequently Asked Questions
What is Feishu Multi Agent Manager?
交互式引导配置多 Agent 系统,支持批量创建、凭证验证、角色模板、自动备份. It is an AI Agent Skill for Claude Code / OpenClaw, with 767 downloads so far.
How do I install Feishu Multi Agent Manager?
Run "/install feishu-multi-agent-manager" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.
Is Feishu Multi Agent Manager free?
Yes, Feishu Multi Agent Manager is completely free, licensed under MIT-0. You can download, install and use it at no cost.
Which platforms does Feishu Multi Agent Manager support?
Feishu Multi Agent Manager is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).
Who created Feishu Multi Agent Manager?
It is built and maintained by rfdiosuao (@rfdiosuao); the current version is v2.0.5.
More Skills