Upload a local image file to Feishu and receive the image_key needed for sending via feishu_im_user_message.
只做一件事:本地文件 → image_key
bash <skill-dir>/scripts/upload-image.sh /path/to/image.png
export FEISHU_IMAGE_PATH="/path/to/image.png"
bash <skill-dir>/scripts/upload-image.sh
img_v3_02104_xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxxg
# 1. Upload → get image_key
IMAGE_KEY=$(bash <skill-dir>/scripts/upload-image.sh /path/to/image.png)
# 2. Send via feishu_im_user_message tool (OpenClaw-native, user token auto-managed)
# action=send, msg_type=image, content="{\"image_key\":\"<IMAGE_KEY>\"}"
Reads appId and appSecret from openclaw.json at channels.feishu. Can be overridden with env vars FEISHU_APP_ID and FEISHU_APP_SECRET.
共 1 个版本