feishu-message
Feishu Message lets you retrieve specific messages using their ID or browse recent activity in any chat. Customize your search with page size, sort order, and time range filters to find exactly what you need.
Feishu Message retrieves individual messages by ID or lists recent messages from any Feishu chat.
AI-generated summary based on this skill's SKILL.md
Install
m1heng/clawdbot-feishu/feishu-message · repository language: TypeScript
git clone https://github.com/m1heng/clawdbot-feishu
cp -r clawdbot-feishu/skills/feishu-message ~/.claude/skills/feishu-messageFrequently asked questions
AI-generated answers based on this skill's SKILL.md and metadata
How to read feishu messages with feishu-message?
Feishu Message retrieves specific messages using their ID or lets you browse recent activity in any chat. You can customize your search with page size, sort order, and time range filters to find exactly what you need from your Feishu conversations.
Can feishu-message retrieve recent messages from Feishu?
Yes, feishu-message retrieves recent messages from any Feishu chat. It supports filtering by time range and sort order, allowing you to access the most current conversation activity or browse backwards through your chat history.
How do I search feishu message by ID with feishu-message?
Feishu Message supports message lookup by ID, letting you retrieve a specific message directly. Simply provide the message ID and feishu-message will fetch that exact message along with its metadata and sender information.
What filters does feishu-message support for message queries?
Feishu Message offers customizable search with page size control, sort order options, and time range filters. These tools help you narrow down results when accessing conversation archives and group chat message lists in Feishu.
Does feishu-message work with group chats and direct messages?
Feishu Message accesses both group chat message lists and direct message conversations. You can retrieve individual messages, browse recent activity, and access conversation archives across all chat types in Feishu.
What information does feishu-message provide about messages?
Feishu Message returns message content along with metadata and sender information. This lets you understand not just what was said, but who sent it and when, giving you full context for each message you retrieve.
SKILL.md
rendered from the published skill — quoted content, verbatim
Feishu Message Tool
Single tool feishu_message for reading Feishu messages — get a single message by ID or list recent messages in a chat.
Actions
Get Single Message
{
"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
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:
```json { "ok": true, "action": "list",
(truncated - see the full file via the links below)
Read as markdown · JSON record · Browse the source repository
File tree — 1 file
skills/feishu-message/SKILL.md