Use when user says "发到飞书", "发送到飞书", "发送到飞书群", "飞书通知", "通知飞书", "feishu", "发给我", "私发飞书", or explicitly invokes /send-feishu to send messages, images, or files to…
Send Feishu Message
The send logic is in scripts/feishu-send (bundled with this skill).
Step 0 — Locate and prepare the script
# Find the script relative to where this skill is installed
SKILL_DIR="$(find ~/.claude/plugins -name 'send-feishu' -path '*/skills/*' -type d 2>/dev/null | head -1)"
FEISHU_SEND="${SKILL_DIR}/scripts/feishu-send"
chmod +x "$FEISHU_SEND" 2>/dev/null
echo "script: $FEISHU_SEND"
If the script is not found (e.g., skill loaded from local dev path), use:
FEISHU_SEND="$(dirname "$0")/scripts/feishu-send"don't have the plugin yet? install it then click "run inline in claude" again.