Overview
- Skill Key
- 2426758093/feishu-message-fallback
- Author
- 2426758093
- Source Repo
- openclaw/skills
- Version
- -
- Source Path
- skills/2426758093/feishu-message-fallback
- Latest Commit SHA
- e076db1feec6a49e39e24ddd953075815ec7b76f
Feishu message fallback mechanism with retry logic. Automatically retries failed messages with exponential backoff and fallback from rich text to plain text.
Stars
0
Installs
0
Status
ACTIVE
Visibility
PUBLIC
直接复制以下提示词,发送给你的 AI 助手即可完成安装。
请先检查是否已安装 SkillHub 商店,若未安装,请根据 https://skillhub-1388575217.cos.ap-guangzhou.myqcloud.com/install/skillhub.md 安装 SkillHub 商店,然后安装 feishu-message-fallback 技能。 若已安装,则直接安装 feishu-message-fallback 技能。
# 飞书消息回退机制
## 功能
- **自动重试**:消息发送失败时自动重试(最多 3 次)
- **指数退避**:重试间隔递增(1s → 2s → 4s)
- **降级策略**:富文本失败 → 纯文本重试
- **错误日志**:记录失败原因和重试结果
## 使用场景
- 网络波动导致消息发送失败
- 富文本格式不被支持
- 消息队列积压
## 实现逻辑
```powershell
# 伪代码
function Send-FeishuMessageWithFallback {
param($message, $retryCount = 3)
for ($i = 0; $i -lt $retryCount; $i++) {
try {
# 尝试发送富文本
$result = Send-FeishuRichText -message $message
if ($result.success) { return $result }
} catch {
Write-Host "Attempt $($i+1) failed: $_"
}
# 指数退避等待
if ($i -lt $retryCount - 1) {
$waitTime = [Math]::Pow(2, $i)
Start-Sleep -Seconds $waitTime
}
}
# 所有重试失败,降级为纯文本
Write-Host "Rich text failed, falling back to plain text..."
return Send-FeishuPlainText -message $message
}
```
## 配置
在 `TOOLS.md` 中添加:
```markdown
### 飞书消息回退配置
- **最大重试次数:** 3
- **重试间隔:** 1s, 2s, 4s(指数退避)
- **降级策略:** 富文本 → 纯文本
```
## 错误处理
| 错误类型 | 处理方式 |
|---------|---------|
| 网络超时 | 自动重试 |
| 格式错误 | 降级为纯文本 |
| 权限不足 | 立即失败,通知用户 |
| 消息过长 | 截断后重试 |
## 集成到定时任务
定时任务调用时自动启用回退机制:
```json
{
"delivery": {
"mode": "announce",
"channel": "feishu",
"to": "ou_faec8fadc584abfd18a2996f55d607b5",
"retry": {
"maxAttempts": 3,
"backoffMs": 1000
}
}
}
```
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.