用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/javimosch/open-claw-skills --skill donotify命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| name | donotify |
| description | Send immediate voice call reminders or schedule future calls via DoNotify. |
| version | 1.0.1 |
| homepage | https://donotifys.com/openclaw |
| permissions | ["network:outbound"] |
| requires | {"env":["DONOTIFY_API_TOKEN","DONOTIFY_URL"]} |
| metadata | {"openclaw":{"requires":{"env":"[Truncated]"},"primaryEnv":"DONOTIFY_API_TOKEN"}} |
You can send immediate voice call reminders or schedule future calls through the DoNotify API.
All requests require:
Authorization: Bearer $DONOTIFY_API_TOKENAccept: application/json$DONOTIFY_URL (default: https://donotifys.com)Check the user's plan, remaining notifications, and phone number status.
GET $DONOTIFY_URL/api/usage
Response:
{
"plan": "starter",
"notification_limit": 30,
"used_this_month": 5,
"remaining": 25,
"phone_number_set": true
}
Before placing calls, check that phone_number_set is true and remaining is greater than 0. If the phone number is not set, tell the user to configure it in their DoNotify profile.
Place an immediate voice call to the user's phone.
POST $DONOTIFY_URL/api/call-now
Content-Type: application/json
{
"title": "Pick up groceries",
"description": "Milk, eggs, bread from Trader Joe's"
}
Parameters:
title (required, string, max 255) — What the call is about. This is spoken aloud.description (optional, string, max 1000) — Additional details spoken after the title.Success response:
{
"success": true,
"reminder_id": 42,
"call_uuid": "abc-123",
"status": "completed"
}
Error response (422 if no phone number, 500 if call fails):
{
"success": false,
"reminder_id": 42,
"error": "Phone number not configured. Update your profile first.",
"status": "failed"
}
Schedule a voice call for a future time.
POST $DONOTIFY_URL/api/reminders
Content-Type: application/json
{
"title": "Team standup",
"call_at": "2025-06-15T14:45:00Z",
"description": "Prepare sprint update",
"event_time": "2025-06-15T15:00:00Z"
}
Parameters:
title (required, string, max 255) — Reminder title spoken in the call.call_at (required, ISO 8601 datetime, must be in the future) — When to place the call.description (optional, string, max 1000) — Extra details.event_time (optional, ISO 8601 datetime) — The actual event time, if different from call time.Success response (201):
{
"success": true,
"reminder": {
"id": 43,
"title": "Team standup",
"description": "Prepare sprint update",
"call_at": "2025-06-15T14:45:00+00:00",
"event_time": "2025-06-15T15:00:00+00:00",
"status": "pending"
}
}
call_at.phone_number_set is false, tell the user to set their phone number at their DoNotify profile page before placing calls.