Install
openclaw skills install feishui-file-senderSend files via Feishu channel using message tool with filePath parameter.
openclaw skills install feishui-file-senderSend binary files (ZIP, PDF, images, etc.) to Feishu groups or users.
cd /root/.openclaw/workspace/skills
zip -r /tmp/skill_name.zip skill_folder/
Key: Use relative path inside the zip, not absolute path.
message(
action="send",
channel="feishu",
filePath="/tmp/skill_name.zip",
message="📦 Skill Name",
target="oc_xxxxxxxxxxxx" # chat ID
)
| Parameter | Type | Required | Description |
|---|---|---|---|
| action | string | Yes | "send" |
| channel | string | Yes | "feishu" |
| filePath | string | Yes | Absolute path to file |
| message | string | Yes | Caption text |
| target | string | Yes | Chat ID (oc_xxx for groups, user ID for DM) |
/tmp/xxx.zipzip -r /tmp/out.zip folder/# Package
cd /root/.openclaw/workspace/skills
zip -r /tmp/weather.zip weather/
# Send
message(action="send", channel="feishu", filePath="/tmp/weather.zip", message="📦 weather skill", target="oc_group_id")