多Bot圆桌讨论系统 - 让飞书群里的多个Bot像真人一样讨论问题。
在飞书群里说"讨论 XXX"即可自动触发
python skills/bot-roundtable/coordinator.py "讨论问题"
from feishu_sender import send_message_as_bot
# spawn分脑
sessions_spawn(label="tech", task="技术专家分析:XXX")
sessions_spawn(label="product", task="产品专家分析:XXX")
# 发送结果
send_message_as_bot("qiwang", chat_id, "技术观点...")
send_message_as_bot("meidou2", chat_id, "产品观点...")
bot-roundtable/
├── SKILL.md # 本文件
├── feishu_sender.py # 飞书多Bot发消息模块
├── coordinator.py # 协调脚本
├── config.json # Bot凭证配置
└── README.md # 详细文档
config.json:
{
"bots": {
"default": {"app_id": "...", "app_secret": "..."},
"qiwang": {"app_id": "...", "app_secret": "..."},
"meidou2": {"app_id": "...", "app_secret": "..."}
},
"group_chat_id": "oc_xxx"
}
共 1 个版本