Install
openclaw skills install feishu-messageUnified CLI toolkit for Feishu messaging tasks including fetching messages, sending audio, creating group chats, and listing pinned messages.
openclaw skills install feishu-messageA unified toolkit for Feishu messaging operations, providing a single CLI entry point for common tasks.
Use the unified CLI via index.js:
node skills/feishu-message/index.js <command> [options]
get)Fetch message content by ID. Supports recursive fetching for merged messages.
node skills/feishu-message/index.js get <message_id> [--raw] [--recursive]
Example:
node skills/feishu-message/index.js get om_12345 --recursive
send-audio)Send an audio file as a voice bubble.
node skills/feishu-message/index.js send-audio --target <id> --file <path> [--duration <ms>]
--target: User OpenID (ou_) or ChatID (oc_).--file: Path to audio file (mp3/wav/etc).--duration: (Optional) Duration in ms.create-chat)Create a new group chat with specified users.
node skills/feishu-message/index.js create-chat --name "Project Alpha" --users "ou_1" "ou_2" --desc "Description"
list-pins)List pinned messages in a chat.
node skills/feishu-message/index.js list-pins <chat_id>
Standalone scripts are still available for backward compatibility:
get.jssend-audio.jscreate_chat.jslist_pins_v2.js