Feishu multi agent manager
交互式引导配置多 Agent 系统,支持批量创建、凭证验证、角色模板From its SKILL.md
npx -y skills add rfdiosuao/AgentSkill --skill feishu-multi-agent-managerAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
2 things to look at
- reads credentialsReads from 2 credential sources: `appId` and 1 more.
- 16 stars16 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
SKILL.md
3.0 KB, ~1.1k tokens by cl100k_base, as published. Nobody here has run it
飞书多 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.0
作者: rfdiosuao
许可证: MIT
What ships with it: 7 files
45.6 KB alongside SKILL.md, 3 of them executable
src/
- index.tsruns25.2 KB
- types.d.tsruns397 B
tests/
- index.test.tsruns827 B
- package.json981 B
- README.md16.9 KB
- skill.json644 B
- tsconfig.json769 B