返回顶部
d

donotify

Send immediate voice call reminders or schedule future calls via DoNotify.

作者: admin | 来源: ClawHub
源自
ClawHub
版本
V 1.0.1
安全检测
已通过
589
下载量
2
收藏
概述
安装方式
版本历史

donotify

# DoNotify Skill You can send immediate voice call reminders or schedule future calls through the DoNotify API. ## Authentication All requests require: - Header: `Authorization: Bearer $DONOTIFY_API_TOKEN` - Header: `Accept: application/json` - Base URL: `$DONOTIFY_URL` (default: `https://donotifys.com`) ## Endpoints ### Check Usage Check the user's plan, remaining notifications, and phone number status. ``` GET $DONOTIFY_URL/api/usage ``` Response: ```json { "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. ### Call Now 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: ```json { "success": true, "reminder_id": 42, "call_uuid": "abc-123", "status": "completed" } ``` Error response (422 if no phone number, 500 if call fails): ```json { "success": false, "reminder_id": 42, "error": "Phone number not configured. Update your profile first.", "status": "failed" } ``` ### Schedule Reminder 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): ```json { "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" } } ``` ## Behavior Guidelines - When the user says "call me now about X" or "remind me right now about X", use the **Call Now** endpoint. - When the user says "remind me at [time] about X" or "call me at [time] for X", use the **Schedule Reminder** endpoint. Convert the user's natural language time to ISO 8601 for `call_at`. - When the user asks "how many reminders do I have left" or "check my usage", use the **Usage** endpoint. - Always check usage first if you're unsure whether the user has remaining notifications. - If `phone_number_set` is `false`, tell the user to set their phone number at their DoNotify profile page before placing calls. - Keep titles concise and descriptive — they are read aloud during the call.

标签

skill ai

通过对话安装

该技能支持在以下平台通过对话安装:

OpenClaw WorkBuddy QClaw Kimi Claude

方式一:安装 SkillHub 和技能

帮我安装 SkillHub 和 donotify-voice-call-reminder-1776420001 技能

方式二:设置 SkillHub 为优先技能安装源

设置 SkillHub 为我的优先技能安装源,然后帮我安装 donotify-voice-call-reminder-1776420001 技能

通过命令行安装

skillhub install donotify-voice-call-reminder-1776420001

下载 Zip 包

⬇ 下载 donotify v1.0.1

文件大小: 2.47 KB | 发布时间: 2026-4-17 19:44

v1.0.1 最新 2026-4-17 19:44
- Added version (1.0.1) and homepage fields to the skill metadata.
- Included new metadata for Openclaw compatibility.
- No changes to functionality or endpoints.

Archiver·手机版·闲社网·闲社论坛·羊毛社区· 多链控股集团有限公司 · 苏ICP备2025199260号-1

Powered by Discuz! X5.0   © 2024-2025 闲社网·线报更新论坛·羊毛分享社区·http://xianshe.com

p2p_official_large
返回顶部