/install feishu-thread-forward
Feishu Thread Forward
Forward a Feishu thread (话题) to a user, group, or another topic using the Feishu Open API.
When to Use
- User asks to forward/share a thread or topic to another group or user
- You need to cross-post a topic post from one group to another
- The built-in
messagetool cannot do thread-level forwarding
API
POST https://open.feishu.cn/open-apis/im/v1/threads/{thread_id}/forward?receive_id_type={type}
Parameters
| Param | Location | Required | Description |
|---|---|---|---|
thread_id |
path | yes | Thread ID to forward (format: omt_xxxxx) |
receive_id_type |
query | yes | Target ID type: open_id, chat_id, user_id, union_id, email, thread_id |
receive_id |
body | yes | Target ID matching the receive_id_type |
uuid |
query | no | Idempotency key (max 50 chars, dedup within 1 hour) |
Headers
Authorization: Bearer {tenant_access_token}
Content-Type: application/json
How to Get thread_id
A message in a topic group has a thread_id field. Retrieve it via:
GET https://open.feishu.cn/open-apis/im/v1/messages/{message_id}
The response data.items[0].thread_id contains the thread ID (e.g., omt_1accc5a75c0f9b93).
Script
Use scripts/forward_thread.py for the complete implementation.
python3 skills/feishu-thread-forward/scripts/forward_thread.py \
--thread-id omt_xxxxx \
--receive-id oc_xxxxx \
--receive-id-type chat_id
Typical Flow
- Get
thread_id— from the message's metadata, or by calling GET message API - Call forward API —
POST /im/v1/threads/{thread_id}/forward - Result — a
merge_forwardtype message appears in the target chat as a clickable topic card
Forward vs Merge Forward vs Message Forward
| Method | API | Result |
|---|---|---|
| Thread forward (this skill) | POST /threads/{thread_id}/forward |
Topic card (clickable, shows thread context) ✅ |
| Merge forward | POST /messages/merge_forward |
"群聊会话记录" bundle (expandable message list) |
| Message forward | POST /messages/{message_id}/forward |
Single message copied to target (loses thread context) |
Thread forward is what users see when they click "转发话题" in Feishu client.
Prerequisites
- Bot must be in the source group (and can see the thread)
- Bot must be in the target group (or target user must be in bot's availability scope)
- Bot needs
im:messageorim:message:send_as_botpermission
Credentials
Read from /root/.openclaw/openclaw.json → channels.feishu.appId / channels.feishu.appSecret to obtain tenant_access_token.
Error Codes
| Code | Meaning |
|---|---|
| 230002 | Bot not in target group |
| 230013 | Target user not in bot's availability scope |
| 230064 | Invalid thread_id |
| 230066 | Thread is in a secret group (no forwarding) |
| 230070 | Thread's group has anti-leak mode enabled |
| 230073 | Thread invisible to bot (joined after thread creation + history hidden) |
- 确保已安装 OpenClaw(本地或 Docker 部署)
- 在对话框中输入安装命令:
/install feishu-thread-forward - 安装完成后,直接呼叫该 Skill 的名称或使用
/feishu-thread-forward触发 - 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
Feishu Thread Forward 是什么?
Forward Feishu thread/topic to a user, group, or topic via REST API. Activate when: forwarding a thread/topic to another chat, sharing a topic post to a diff... 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 351 次。
如何安装 Feishu Thread Forward?
在 OpenClaw 或 Claude Code 对话框中运行命令「/install feishu-thread-forward」即可一键安装,无需额外配置。
Feishu Thread Forward 是免费的吗?
是的,Feishu Thread Forward 完全免费(开源免费),可自由下载、安装和使用。
Feishu Thread Forward 支持哪些平台?
Feishu Thread Forward 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。
谁开发了 Feishu Thread Forward?
由 deadblue(@deadblue22)开发并维护,当前版本 v1.0.0。