Install
openclaw skills install feishu-webhookSend rich text messages to Feishu via Webhook with heredoc input support. Use when you need to send Markdown-formatted messages to Feishu channels or DMs, especially for scheduled notifications, alerts, or reports.
openclaw skills install feishu-webhookSend messages to Feishu via Webhook with heredoc input.
python3 /home/yuhiri/workspace/skills/feishu-webhook/scripts/send-feishu.py << 'EOF'
# Write your Markdown content here (avoid level 1 and 2 headings; levels 3-6 are acceptable)
- Lists
- **Bold text**
EOF
Add to ~/.openclaw/openclaw.json under env.vars:
{
"env": {
"vars": {
"FEISHU_WEBHOOK_URL": "https://open.feishu.cn/open-apis/bot/v2/hook/xxx",
"FEISHU_WEBHOOK_SECRET": "your_secret"
}
}
}
scripts/send-feishu.py - Main sender