en un clic
feishu-message
// Feishu message reading. Activate when user mentions reading messages, chat history, message lookup, or finding previous messages.
// Feishu message reading. Activate when user mentions reading messages, chat history, message lookup, or finding previous messages.
Feishu message emoji reactions. Activate when user mentions emoji, reaction, thumbsup, like, or responding to messages with emoji.
Feishu urgent message (buzz) notifications. Activate when user mentions urgent, buzz, remind, or escalation for messages.
Feishu document read/write operations + comment management. Activate when user mentions Feishu docs, cloud docs, docx links, or document comments.
Feishu Task, tasklist, subtask, comment, and attachment management. Activate when user mentions tasks, tasklists, subtasks, task comments, task attachments, or task links.
Publish a new release of the Feishu plugin. Use when the user asks to release, publish, or cut a new version.
Local E2E debug and test framework for clawd-feishu plugin development. Use when debugging message flow, testing bot responses, verifying Feishu web UI interactions, or performing end-to-end validation of the OpenClaw-Feishu integration during development.
| name | feishu-message |
| description | Feishu message reading. Activate when user mentions reading messages, chat history, message lookup, or finding previous messages. |
Single tool feishu_message for reading Feishu messages — get a single message by ID or list recent messages in a chat.
{
"action": "get",
"message_id": "om_xxx"
}
Returns:
{
"ok": true,
"action": "get",
"found": true,
"message_id": "om_xxx",
"msg_type": "text",
"content": "Hello world",
"sender_id": "ou_xxx",
"sender_type": "user",
"chat_id": "oc_xxx",
"create_time": "1710000000000",
"update_time": "1710000000000",
"mentions": []
}
List recent messages in a chat (DM or group), newest first by default.
Omit chat_id to use the current conversation's chat:
{
"action": "list"
}
With custom page size, sort order, and time range:
{
"action": "list",
"chat_id": "oc_xxx",
"page_size": 20,
"sort_type": "ByCreateTimeAsc",
"start_time": "1710000000",
"end_time": "1710086400"
}
Returns:
{
"ok": true,
"action": "list",
"chat_id": "oc_xxx",
"total": 10,
"messages": [
{
"message_id": "om_xxx",
"msg_type": "text",
"content_preview": "Hello world",
"sender_id": "ou_xxx",
"sender_type": "user",
"create_time": "1710000000000",
"chat_id": "oc_xxx"
}
]
}
| Parameter | Required | Description |
|---|---|---|
action | Yes | get or list |
message_id | get: Yes | Feishu message ID (e.g., om_xxx) |
chat_id | list: Optional | Chat ID (e.g., oc_xxx). Omit to use current chat. |
page_size | list: Optional | Number of messages (default: 10, max: 50) |
sort_type | list: Optional | ByCreateTimeDesc (default) or ByCreateTimeAsc |
start_time | list: Optional | Unix timestamp in seconds (e.g., "1710000000"). No lower bound if omitted. |
end_time | list: Optional | Unix timestamp in seconds (e.g., "1710086400"). No upper bound if omitted. |
channels:
feishu:
tools:
message: true # default: true
im:message or im:message:readonly — read single/DM messagesim:message.group_at_msg:readonly — read all messages in group chats (not just @bot messages)