/install feishu-merged-msg
Feishu Merged Message Fetcher
Feishu's merge_forward messages appear as "Merged and Forwarded Message" with no content in the bot API. Use the Feishu REST API to retrieve the actual sub-messages.
When to Use
- Message body contains only
"Merged and Forwarded Message" msg_typeismerge_forward- User asks about a forwarded/合并转发 message you can't read
How It Works
The Feishu GET /open-apis/im/v1/messages/{message_id} endpoint returns the parent message plus all sub-messages in data.items[]. Sub-messages have upper_message_id pointing to the parent.
Steps
-
Get the
message_idof the merged message (from inbound context or replied message metadata). -
Run the fetch script:
bash \x3Cskill_dir>/scripts/fetch_merged_msg.sh \x3Cmessage_id> \x3Capp_id> \x3Capp_secret>app_id/app_secret: from OpenClaw config at.channels.feishuinopenclaw.json- If credentials are not readily available, extract them:
python3 -c "import json; d=json.load(open('/root/.openclaw/openclaw.json')); c=d['channels']['feishu']; print(c.get('appId',''), c.get('appSecret',''))"
-
Parse the JSON response:
data.items[0]is the parent (merge_forward) messagedata.items[1:]are the sub-messages in chronological order- Each sub-message has
body.contentwith the actual text/post content mentions[]maps@_user_Nplaceholders to real namessender.ididentifies who sent each sub-message
-
Summarize the conversation thread for the user.
Notes
- The API requires
im:message:readonlyscope on the Feishu app. - Images inside sub-messages show as
image_keyreferences; they cannot be directly displayed but can be described from context. - Sub-messages may come from different chats (check
chat_id); the original chat context may differ from the current group.
- 确保已安装 OpenClaw(本地或 Docker 部署)
- 在对话框中输入安装命令:
/install feishu-merged-msg - 安装完成后,直接呼叫该 Skill 的名称或使用
/feishu-merged-msg触发 - 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
Feishu Merged Msg 是什么?
Fetch and parse Feishu merged/forwarded messages (合并转发消息). Activate when a Feishu message shows "Merged and Forwarded Message" with no readable content, or w... 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 408 次。
如何安装 Feishu Merged Msg?
在 OpenClaw 或 Claude Code 对话框中运行命令「/install feishu-merged-msg」即可一键安装,无需额外配置。
Feishu Merged Msg 是免费的吗?
是的,Feishu Merged Msg 完全免费(开源免费),可自由下载、安装和使用。
Feishu Merged Msg 支持哪些平台?
Feishu Merged Msg 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。
谁开发了 Feishu Merged Msg?
由 deadblue(@deadblue22)开发并维护,当前版本 v1.0.0。