用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/LeoYeAI/openclaw-master-skills --skill amemo-send-task命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
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.
正在显示 SKILL.md
基于 SOC 职业分类
| 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
测试邮件已发送,请查收。
| 异常类型 | 用户提示 |
|---|---|
| 邮箱格式错误 | ❌ 邮箱格式不正确,请重新输入 |
| 网络超时 | 网络有点慢,请稍后重试 |
| 服务繁忙 | 服务正忙,请稍后再试 |
| 未知错误 | 出了点小问题,请稍后重试 |