TopRank Skills

Home / Claw Skills / 其他 / feishu-card-sender
Official OpenClaw rules 15%

feishu-card-sender

通过飞书 OpenAPI 发送卡片消息(interactive card),支持模板化 JSON 卡片与变量替换。用于用户要求“发送飞书卡片/模板消息/互动卡片”时,或需要把结构化通知发到指定 open_id/chat_id 时。该技能只走 OpenAPI(appid/appsecret + tenant_access_token),不使用 message 通道。

Stars

0

Installs

0

Status

ACTIVE

Visibility

PUBLIC

安装方式

直接复制以下提示词,发送给你的 AI 助手即可完成安装。

请先检查是否已安装 SkillHub 商店,若未安装,请根据 https://skillhub-1388575217.cos.ap-guangzhou.myqcloud.com/install/skillhub.md 安装 SkillHub 商店,然后安装 feishu-card-sender 技能。 若已安装,则直接安装 feishu-card-sender 技能。

Overview

Skill Key
dobbey/feishu-card-sender
Author
dobbey
Source Repo
openclaw/skills
Version
-
Source Path
skills/dobbey/feishu-card-sender
Latest Commit SHA
ad02724cf6a315810e3a5f41ae8f559624eddb30

Extracted Content

SKILL.md excerpt

# Feishu Card Sender

## 概览

用统一方式通过飞书 OpenAPI 发送卡片消息,避免每次手写 curl。
本技能固定使用 `scripts/send_feishu_card.py`(appid/appsecret 鉴权),不走 `message` 通道。

## 快速决策

1. **发送到当前会话用户** → 使用当前会话 `sender_id` 作为 `--receive-id`(open_id)
2. **发送到指定用户/群** → 显式传 `--receive-id` + `--receive-id-type`
3. **需要复用模板** → 把模板放到 `assets/templates/*.json`,再用 `--template` + 变量替换

## 发送方式:脚本发送(OpenAPI,唯一方式)

脚本:`scripts/send_feishu_card.py`

### 凭证

按以下优先级自动获取(从高到低):
1. 命令参数:`--app-id` / `--app-secret`
2. 环境变量:`FEISHU_APP_ID` / `FEISHU_APP_SECRET`
3. OpenClaw 配置:`/root/.openclaw/openclaw.json` 的 `channels.feishu.accounts`
   - 可用 `--account-id` 指定账户(不传则取第一个)
   - 可用 `--account-id current` 自动读取会话上下文 account_id(从运行时环境变量 best-effort 获取)

### 常用命令

```bash
# 1) 列出内置模板
python3 scripts/send_feishu_card.py --list-templates

# 2) 用 movie 模板发送到 open_id(变量文件)
export FEISHU_APP_ID="cli_xxx"
export FEISHU_APP_SECRET="xxx"
python3 scripts/send_feishu_card.py \
  --template movie \
  --receive-id ou_xxx \
  --receive-id-type open_id \
  --vars-file references/vars.example.env

# 3) 直接指定模板文件 + 行内变量
python3 scripts/send_feishu_card.py \
  --template-file assets/templates/movie.json \
  --receive-id ou_xxx \
  --var title='星际穿越' \
  --var rating='8.7'

# 4) 只有海报 URL 时,自动上传飞书并注入 poster_img_key
python3 scripts/send_feishu_card.py \
  --template movie-custom \
  --receive-id ou_xxx \
  --receive-id-type open_id \
  --poster-url 'https://image.tmdb.org/t/p/original/xxx.jpg' \
  --var title='星际穿越' \
  --var overview='...'
```

## 变量替换规则

- 模板中占位符写法:`${key}`
- 变量来源(后者覆盖前者):
  1) `--vars-file`(`KEY=VALUE`)
  2) 多次 `--var key=value`
- 未提供的变量保持原样,不报错(便于渐进调试)

## 参数规范(必读)

发送前先读:
- `references/template-params.md`(movie-cus...

Related Claw Skills