amemo-send-task
由 amemo-save-task 在用户确认邮箱后内部调用,将任务提醒以邮件形式发送到指定邮箱地址。
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Menu
由 amemo-save-task 在用户确认邮箱后内部调用,将任务提醒以邮件形式发送到指定邮箱地址。
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Based on SOC occupation classification
A curated collection of 2409+ best OpenClaw skills — AI tools, productivity, marketing, frontend, mobile, backend, DevOps and more. Weekly updated by MyClaw.ai — Powered by MyClaw.ai
The ai-image-to-video-generator skill on ClawHub transforms static images into dynamic, motion-rich video content through a conversational interface. Upload any photo or illustration, describe the motion style you want, and receive a polished video output. Ideal for marketers, content creators, and social media managers who need animated visuals without complex software. Supports mp4, mov, avi, webm, and mkv output formats.
Scan any agent skill for security risks before you install or use it. Powered by Tencent Zhuque Lab A.I.G (AI-Infra-Guard). 100% local static analysis — no file contents or credentials leave your device. Compatible with CodeBuddy, Cursor, Windsurf, Claude Code, OpenClaw and more. Triggers on: `这个 skill 安全吗`, `skill 安全扫描`, `检查 skill 安全`, `audit skill`, `scan skill`, `check skill safety`, `analyze skill`, `inspect skill`, `verify skill`, `skill security`, `skill supply chain`. Do NOT trigger for general agent usage, full system health checks, project debugging, or normal development.
AlphaShop新品选品SKILL:基于关键词和商品筛选条件生成深度市场分析和新品推荐报告。 支持Amazon和TikTok平台的跨境电商选品,提供市场评级、竞争分析、新品推荐、热销品对比等功能。
当用户说「查看清单/查询清单/我的待办/查看任务/列出任务」时调用,返回按今日/明日/近期/未来分组的完整待办清单。
当用户说「今日健康简报」「健康日报」「健康总览」「今日健康情况」时调用,获取全部类型最新健康数据并生成综合评估报告。
| name | amemo-send-task |
| description | 由 amemo-save-task 在用户确认邮箱后内部调用,将任务提醒以邮件形式发送到指定邮箱地址。 |
| 属性 | 值 |
|---|---|
| 路由 | POST https://skill.amemo.cn/send-task |
| Bean | TaskBean |
| Content-Type | application/json |
⚠️ 服务端要求所有字段必须存在。
userToken、taskEmail、taskTime必填且有值,其他字段可选但字段必须存在。
| 参数 | 类型 | 必填 | 说明 |
|---|---|---|---|
userToken | str | ✅ | 用户登录凭证 |
taskId | str | — | 要发送的任务 ID,不传则传 null |
taskTitle | str | — | 任务标题,不传则传 null |
taskExplain | str | — | 任务说明,不传则传 null |
taskTime | str | ✅ | 任务时间(不能为空) |
taskEmail | list[str] | ✅ | 接收通知的邮箱列表(不能为空) |
# 发送任务通知
curl -X POST https://skill.amemo.cn/send-task \
-H "Content-Type: application/json" \
-d '{
"userToken": "<token>",
"taskId": null,
"taskTitle": null,
"taskExplain": null,
"taskTime": "2025-12-31",
"taskEmail": ["a@example.com", "b@example.com"]
}'
{
"code": 200,
"desc": "success",
"data": "..."
}
📧 邮件通知:此接口用于将任务通知推送给指定邮箱
👥 多人通知:
taskEmail为字符串数组,可同时通知多人🔐 认证要求:必须携带有效的 userToken
⚠️ 字段要求:所有字段必须存在,即使不传值也要传
null
正则表达式:
^[a-zA-Z0-9._%+-]+@[a-zA-Z0-9.-]+\.[a-zA-Z]{2,}$
1. 接收来自 amemo-save-task 的邮件发送请求
↓
2. 验证邮箱格式
↓
3. 调用 POST /send-task 接口
↓
4. 返回发送结果
✅ 邮件提醒已设置!
📧 接收邮箱:user@example.com
⏰ 提醒时间:2026-03-23 07:00:00
测试邮件已发送,请查收。
| 异常类型 | 用户提示 |
|---|---|
| 邮箱格式错误 | ❌ 邮箱格式不正确,请重新输入 |
| 网络超时 | 网络有点慢,请稍后重试 |
| 服务繁忙 | 服务正忙,请稍后再试 |
| 未知错误 | 出了点小问题,请稍后重试 |