Jump to related tools in the same category or review the original source on GitHub.

Communication @josephyb97 Updated 6/28/2026 1,259 downloads 0 stars Security: Pass

Feishui File Sender OpenClaw Plugin & Skill | ClawHub

Looking to integrate Feishui File Sender into your AI workflows? This free OpenClaw plugin from ClawHub helps you automate communication tasks instantly, without having to write custom tools from scratch.

What this skill does

Send files via Feishu channel using message tool with filePath parameter.

Install

ClawHub CLI
openclaw skills install @josephyb97/feishui-file-sender
Node.js (npx)
npx clawhub@latest install feishui-file-sender

Full SKILL.md

Open original
Metadata table.
namedescription
feishu-file-senderSend files via Feishu channel using message tool with filePath parameter.

SKILL.md content below is scrollable.

Feishu File Sender

Send binary files (ZIP, PDF, images, etc.) to Feishu groups or users.

Prerequisites

  • OpenClaw configured with Feishu channel
  • Target chat ID (group or user)

Step 1: Package the Skill/File

cd /root/.openclaw/workspace/skills
zip -r /tmp/skill_name.zip skill_folder/

Key: Use relative path inside the zip, not absolute path.

Step 2: Send via Feishu

message(
    action="send",
    channel="feishu",
    filePath="/tmp/skill_name.zip",
    message="📦 Skill Name",
    target="oc_xxxxxxxxxxxx"  # chat ID
)

Parameters

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)

Common Issues

  1. File too large: Feishu limits apply (~20MB for most)
  2. Wrong path: Use absolute path /tmp/xxx.zip
  3. Relative path in zip: Package from parent dir, e.g., zip -r /tmp/out.zip folder/

Example: Send a Skill

# 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")
ClawHub Registry URL: https://clawhub.ai/josephyb97/skills/feishui-file-sender

Related skills

If this matches your use case, these are close alternatives in the same category.