| name | feishu |
| description | Use this skill to start and manage Feishu(飞书) (Lark) bot, send messages through Feishu bot, and interact with Feishu Open API. This skill provides Feishu bot functionality including message receiving, replying, and bot operations via lark-oapi SDK. |
| homepage | local |
| metadata | {"openclaw":{"emoji":"🐦","primaryEnv":"LARK_APP_ID","requires":{"bins":["python","python3"],"env":["LARK_APP_ID","LARK_APP_SECRET"]}}} |
feishu
Use this skill to start and manage Feishu (Lark) bot, send messages through Feishu bot, and interact with Feishu Open API. This skill provides Feishu bot functionality including message receiving, replying, and bot operations via lark-oapi SDK.Use the message tool. No provider-specific feishu tool exposed to the agent.
Params Descriptions
message tool params:
重要提示:发送视频文件(如 .mp4、.mov、.avi、.mkv、.flv、.wmv、.webm 等视频格式)时,必须使用 send_video,绝对不要使用 send_file。send_file 仅用于发送非图片、非视频的普通文件(如文档、压缩包等)。
发送图片消息(用于发送图片文件,如 .png、.jpg、.jpeg、.gif、.bmp 等图片格式)
{
"action": "send_pic",
"path": "xxxx.png"
}
发送视频消息(用于发送视频文件,如 .mp4、.mov、.avi、.mkv、.flv、.wmv、.webm 等视频格式。注意:任何视频文件都必须使用此 action,不要使用 send_file)
{
"action": "send_video",
"path": "xxxx.mp4"
}
发送普通文件(仅用于发送非图片、非视频的普通文件,如 .pdf、.docx、.xlsx、.zip、.txt 等。视频文件请使用 send_video,图片文件请使用 send_pic)
{
"action": "send_file",
"path": "xxxx.pdf"
}
发送文本消息(用于发送纯文本内容)
{
"action": "send_text",
"text": "text content"
}
Quick Start
飞书适配器已集成到主程序中,通过 FeishuAdapter 启动:
export LARK_APP_ID="your_app_id"
export LARK_APP_SECRET="your_app_secret"
weclaw start --adapter feishu