Overview
- Skill Key
- dadaniya99/xiaolongxia-feishu-card
- Author
- dadaniya99
- Source Repo
- openclaw/skills
- Version
- -
- Source Path
- skills/dadaniya99/xiaolongxia-feishu-card
- Latest Commit SHA
- f38fba2d7a6c6dde79a14940c303d73b17607c77
飞书互动卡片发送技能(国际版 Feishu 兼容)。当需要发送格式丰富的飞书卡片消息时使用。支持标题、Markdown 内容、颜色主题。关键:必须使用 schema 2.0 格式 + 双重 JSON stringify,否则国际版飞书(Feishu)无法渲染。
Stars
0
Installs
0
Status
ACTIVE
Visibility
PUBLIC
直接复制以下提示词,发送给你的 AI 助手即可完成安装。
请先检查是否已安装 SkillHub 商店,若未安装,请根据 https://skillhub-1388575217.cos.ap-guangzhou.myqcloud.com/install/skillhub.md 安装 SkillHub 商店,然后安装 feishu-card 技能。 若已安装,则直接安装 feishu-card 技能。
# 飞书互动卡片发送技能
## 核心要点(必读)
飞书卡片有新旧两种格式:
- **旧版 components 格式**:部分版本不兼容,显示"请升级至最新版本客户端"
- **schema 2.0 格式**:✅ 推荐,飞书 7.x 均支持
统一用 schema 2.0 即可,不管飞书是中文界面还是英文界面都能用。
## 关键:双重 JSON.stringify
```python
import json
card = { ... } # 卡片对象
content = json.dumps(json.dumps(card)) # 必须 dumps 两次!
```
一次 stringify 不够,飞书 API 的 `content` 字段要求是 JSON 字符串。
## 卡片结构(schema 2.0)
```json
{
"schema": "2.0",
"header": {
"title": {
"tag": "plain_text",
"content": "标题文字"
},
"template": "blue"
},
"body": {
"elements": [
{
"tag": "markdown",
"content": "**加粗** 普通文字\n\n支持换行"
}
]
}
}
```
### header.template 颜色选项
- `blue` — 蓝色(默认推荐)
- `green` — 绿色
- `red` — 红色
- `orange` — 橙色
- `purple` — 紫色
- `grey` — 灰色
### body.elements 支持的 tag
- `markdown` — Markdown 文本(支持 **加粗**、*斜体*、`代码`、链接)
- `hr` — 分割线:`{"tag": "hr"}`
- `note` — 底部备注
## 发送方式
### 方法一:用脚本(推荐)
```bash
python3 /root/.openclaw/workspace/skills/feishu-card/scripts/send_card.py \
--open-id "ou_xxxx" \
--title "标题" \
--content "**内容** 支持 Markdown" \
--template "blue"
```
### 方法二:用 message tool
直接调用 `message` tool,`msg_type` 需要写 `interactive`,`content` 需要双重 stringify(先序列化卡片对象,再序列化整个字符串)。
### 方法三:curl(手动)
```bash
APP_SECRET=$(cat /root/.openclaw/openclaw.json | python3 -c "import json,sys; d=json.load(sys.stdin); print(d['channels']['feishu']['appSecret'])")
TOKEN=$(curl -s -X POST "https://open.feishu.cn/open-apis/auth/v3/tenant_access_token/internal" \
-H "Content-Type: application/json" \
-d "{\"app_id\":\"cli_a9f5877b3378dbd8\",\"app_secret\":\"$APP_SECRET\"}" \
| python3 -c "import json,sys; print(json.load(sys.stdin)['tenant_access_token'])")
python3 -c "
import json
card = {
'schema...
capt-marbles
Task Router
capncoconut
Register, communicate, and earn on the x402hub AI agent marketplace. Use when an agent needs to register on x402hub, browse or claim bounties, submit deliverables, send messages to other agents via x402 Relay, check marketplace stats, or manage agent credentials. Triggers on x402hub, agent marketplace, bounty, relay messaging, agent-to-agent communication, or USDC earning.
capevace
Real-time event bus for AI agents. Publish, subscribe, and share live signals across a network of agents with Unix-style simplicity.
captchasco
OpenClaw integration guidance for CAPTCHAS Agent API, including OpenResponses tool schemas and plugin tool registration.
carol-gutianle
name: modelready description: Start using a local or Hugging Face model instantly, directly from chat. metadata: {"openclaw":{"requires":{"bins": "bash", "curl" }, "env": "URL" }}
canbirlik
Controls Wiz smart bulbs (turn on/off, RGB colors, disco mode) via local WiFi.