openclaw-aligenie-push
主动向天猫精灵推送消息的技能。触发时机:(1) 用户要求"推送到天猫精灵"、"播报到天猫精灵"时 (2) 需要通过天猫精灵语音播报通知用户时 (3) 将任务完成状态或提醒推送到天猫精灵设备时。触发时机:(1) 用户要求"推送到天猫精灵"、"播报到天猫精灵"时 (2) 需要通过天猫精灵语音播报通知用户时 (3) 将任务完成状态或提醒推送到天猫精灵设备时。
Install via CLI (Recommended)
clawhub install openclaw/skills/skills/axelhu/openclaw-aligenie-pushopenclaw-aligenie-push
通过天猫精灵主动播报消息的 OpenClaw Skill
快速使用
命令模式
@小爪子 播报到天猫精灵 明天早上8点有会议
@小爪子 推送到天猫精灵 任务已完成
@小爪子 天猫精灵播报 游戏第三章已解锁!
函数模式
from skills.openclaw-aligenie-push.push import push
# 异步调用
result = await push("任务完成,请查看结果")
# 成功返回: {"success": true, "messageId": "xxx"}
# 失败返回: {"success": false, "error": "错误描述"}
参数
| 参数 | 默认值 | 说明 |
|---|---|---|
text | 必填 | 要播报的文字内容 |
device_type | speaker | speaker=无屏音箱, screen=带屏设备 |
open_id | 配置默认 | 覆盖默认设备 |
push_server | 配置默认 | 覆盖默认服务器地址 |
配置 (TOOLS.md)
### 天猫精灵推送配置
ALIGENIE_PUSH_SERVER=http://你的云服务器公网IP:58472/push
ALIGENIE_APP_ID=2026032918608
ALIGENIE_APP_SECRET=审批通过后获取
ALIGENIE_DEVICE_OPEN_ID=天猫精灵设备openId
前置条件
- 阿里云技能「消息推送_定制机版」审批通过
- 云服务器已部署 push-server.py
- 天猫精灵 App 已添加「OpenClaw主动播报」技能
→ 完整部署文档: DEPLOY.md
Metadata
Not sure this is the right skill?
Describe what you want to build — we'll match you to the best skill from 16,000+ options.
Find the right skillPaste this into your clawhub.json to enable this plugin.
{
"plugins": {
"official-axelhu-openclaw-aligenie-push": {
"enabled": true,
"auto_update": true
}
}
}Related Skills
Openclaw Sleep
Skill by axelhu
superpowers-overview
Use when starting any development work or when unsure which superpowers development skill to use - provides entry point and navigation to the full superpowers skill suite for OpenClaw agents
superpowers-subagent-dev
Use when executing implementation plans with independent tasks - coordinates task execution by dispatching subagents per task with verification checkpoints, adapted for OpenClaw's isolated session model
contacts
通讯录查询与维护技能。用于查找联系人信息(open_id、chat_id、account_id 等)、记录新联系人、或查询历史沟通偏好。触发时机:(1) 需要 @某人或向某渠道发消息时 (2) 认识新联系人后需要录入通讯录时 (3) 查询某人的联系方式或交流偏好时 (4) 询问"谁知道xxx的飞书ID"或"怎么联系xxx"时。
superpowers-executing-plans
Use when executing a written implementation plan in the current session with sequential task execution and review checkpoints - for when subagent-driven mode is not available