{
  "schemaVersion": "1.0",
  "item": {
    "slug": "donotify-voice-call-reminder",
    "name": "Donotify Voice Call Reminder",
    "source": "tencent",
    "type": "skill",
    "category": "通讯协作",
    "sourceUrl": "https://clawhub.ai/MicahelE/donotify-voice-call-reminder",
    "canonicalUrl": "https://clawhub.ai/MicahelE/donotify-voice-call-reminder",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/donotify-voice-call-reminder",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=donotify-voice-call-reminder",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "package.json",
      "SKILL.md"
    ],
    "primaryDoc": "SKILL.md",
    "quickSetup": [
      "Download the package from Yavira.",
      "Extract the archive and review SKILL.md first.",
      "Import or place the package into your OpenClaw setup."
    ],
    "agentAssist": {
      "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
      "steps": [
        "Download the package from Yavira.",
        "Extract it into a folder your agent can access.",
        "Paste one of the prompts below and point your agent at the extracted folder."
      ],
      "prompts": [
        {
          "label": "New install",
          "body": "I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete."
        },
        {
          "label": "Upgrade existing",
          "body": "I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run."
        }
      ]
    },
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-23T16:43:11.935Z",
      "expiresAt": "2026-04-30T16:43:11.935Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=4claw-imageboard",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=4claw-imageboard",
        "contentDisposition": "attachment; filename=\"4claw-imageboard-1.0.1.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/donotify-voice-call-reminder"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    },
    "downloadPageUrl": "https://openagent3.xyz/downloads/donotify-voice-call-reminder",
    "agentPageUrl": "https://openagent3.xyz/skills/donotify-voice-call-reminder/agent",
    "manifestUrl": "https://openagent3.xyz/skills/donotify-voice-call-reminder/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/donotify-voice-call-reminder/agent.md"
  },
  "agentAssist": {
    "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
    "steps": [
      "Download the package from Yavira.",
      "Extract it into a folder your agent can access.",
      "Paste one of the prompts below and point your agent at the extracted folder."
    ],
    "prompts": [
      {
        "label": "New install",
        "body": "I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete."
      },
      {
        "label": "Upgrade existing",
        "body": "I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "DoNotify Skill",
        "body": "You can send immediate voice call reminders or schedule future calls through the DoNotify API."
      },
      {
        "title": "Authentication",
        "body": "All requests require:\n\nHeader: Authorization: Bearer $DONOTIFY_API_TOKEN\nHeader: Accept: application/json\nBase URL: $DONOTIFY_URL (default: https://donotifys.com)"
      },
      {
        "title": "Check Usage",
        "body": "Check the user's plan, remaining notifications, and phone number status.\n\nGET $DONOTIFY_URL/api/usage\n\nResponse:\n\n{\n  \"plan\": \"starter\",\n  \"notification_limit\": 30,\n  \"used_this_month\": 5,\n  \"remaining\": 25,\n  \"phone_number_set\": true\n}\n\nBefore 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."
      },
      {
        "title": "Call Now",
        "body": "Place an immediate voice call to the user's phone.\n\nPOST $DONOTIFY_URL/api/call-now\nContent-Type: application/json\n\n{\n  \"title\": \"Pick up groceries\",\n  \"description\": \"Milk, eggs, bread from Trader Joe's\"\n}\n\nParameters:\n\ntitle (required, string, max 255) — What the call is about. This is spoken aloud.\ndescription (optional, string, max 1000) — Additional details spoken after the title.\n\nSuccess response:\n\n{\n  \"success\": true,\n  \"reminder_id\": 42,\n  \"call_uuid\": \"abc-123\",\n  \"status\": \"completed\"\n}\n\nError response (422 if no phone number, 500 if call fails):\n\n{\n  \"success\": false,\n  \"reminder_id\": 42,\n  \"error\": \"Phone number not configured. Update your profile first.\",\n  \"status\": \"failed\"\n}"
      },
      {
        "title": "Schedule Reminder",
        "body": "Schedule a voice call for a future time.\n\nPOST $DONOTIFY_URL/api/reminders\nContent-Type: application/json\n\n{\n  \"title\": \"Team standup\",\n  \"call_at\": \"2025-06-15T14:45:00Z\",\n  \"description\": \"Prepare sprint update\",\n  \"event_time\": \"2025-06-15T15:00:00Z\"\n}\n\nParameters:\n\ntitle (required, string, max 255) — Reminder title spoken in the call.\ncall_at (required, ISO 8601 datetime, must be in the future) — When to place the call.\ndescription (optional, string, max 1000) — Extra details.\nevent_time (optional, ISO 8601 datetime) — The actual event time, if different from call time.\n\nSuccess response (201):\n\n{\n  \"success\": true,\n  \"reminder\": {\n    \"id\": 43,\n    \"title\": \"Team standup\",\n    \"description\": \"Prepare sprint update\",\n    \"call_at\": \"2025-06-15T14:45:00+00:00\",\n    \"event_time\": \"2025-06-15T15:00:00+00:00\",\n    \"status\": \"pending\"\n  }\n}"
      },
      {
        "title": "Behavior Guidelines",
        "body": "When the user says \"call me now about X\" or \"remind me right now about X\", use the Call Now endpoint.\nWhen 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.\nWhen the user asks \"how many reminders do I have left\" or \"check my usage\", use the Usage endpoint.\nAlways check usage first if you're unsure whether the user has remaining notifications.\nIf phone_number_set is false, tell the user to set their phone number at their DoNotify profile page before placing calls.\nKeep titles concise and descriptive — they are read aloud during the call."
      }
    ],
    "body": "DoNotify Skill\n\nYou can send immediate voice call reminders or schedule future calls through the DoNotify API.\n\nAuthentication\n\nAll requests require:\n\nHeader: Authorization: Bearer $DONOTIFY_API_TOKEN\nHeader: Accept: application/json\nBase URL: $DONOTIFY_URL (default: https://donotifys.com)\nEndpoints\nCheck Usage\n\nCheck the user's plan, remaining notifications, and phone number status.\n\nGET $DONOTIFY_URL/api/usage\n\n\nResponse:\n\n{\n  \"plan\": \"starter\",\n  \"notification_limit\": 30,\n  \"used_this_month\": 5,\n  \"remaining\": 25,\n  \"phone_number_set\": true\n}\n\n\nBefore 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.\n\nCall Now\n\nPlace an immediate voice call to the user's phone.\n\nPOST $DONOTIFY_URL/api/call-now\nContent-Type: application/json\n\n{\n  \"title\": \"Pick up groceries\",\n  \"description\": \"Milk, eggs, bread from Trader Joe's\"\n}\n\n\nParameters:\n\ntitle (required, string, max 255) — What the call is about. This is spoken aloud.\ndescription (optional, string, max 1000) — Additional details spoken after the title.\n\nSuccess response:\n\n{\n  \"success\": true,\n  \"reminder_id\": 42,\n  \"call_uuid\": \"abc-123\",\n  \"status\": \"completed\"\n}\n\n\nError response (422 if no phone number, 500 if call fails):\n\n{\n  \"success\": false,\n  \"reminder_id\": 42,\n  \"error\": \"Phone number not configured. Update your profile first.\",\n  \"status\": \"failed\"\n}\n\nSchedule Reminder\n\nSchedule a voice call for a future time.\n\nPOST $DONOTIFY_URL/api/reminders\nContent-Type: application/json\n\n{\n  \"title\": \"Team standup\",\n  \"call_at\": \"2025-06-15T14:45:00Z\",\n  \"description\": \"Prepare sprint update\",\n  \"event_time\": \"2025-06-15T15:00:00Z\"\n}\n\n\nParameters:\n\ntitle (required, string, max 255) — Reminder title spoken in the call.\ncall_at (required, ISO 8601 datetime, must be in the future) — When to place the call.\ndescription (optional, string, max 1000) — Extra details.\nevent_time (optional, ISO 8601 datetime) — The actual event time, if different from call time.\n\nSuccess response (201):\n\n{\n  \"success\": true,\n  \"reminder\": {\n    \"id\": 43,\n    \"title\": \"Team standup\",\n    \"description\": \"Prepare sprint update\",\n    \"call_at\": \"2025-06-15T14:45:00+00:00\",\n    \"event_time\": \"2025-06-15T15:00:00+00:00\",\n    \"status\": \"pending\"\n  }\n}\n\nBehavior Guidelines\nWhen the user says \"call me now about X\" or \"remind me right now about X\", use the Call Now endpoint.\nWhen 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.\nWhen the user asks \"how many reminders do I have left\" or \"check my usage\", use the Usage endpoint.\nAlways check usage first if you're unsure whether the user has remaining notifications.\nIf phone_number_set is false, tell the user to set their phone number at their DoNotify profile page before placing calls.\nKeep titles concise and descriptive — they are read aloud during the call."
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/MicahelE/donotify-voice-call-reminder",
    "publisherUrl": "https://clawhub.ai/MicahelE/donotify-voice-call-reminder",
    "owner": "MicahelE",
    "version": "1.0.1",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/donotify-voice-call-reminder",
    "downloadUrl": "https://openagent3.xyz/downloads/donotify-voice-call-reminder",
    "agentUrl": "https://openagent3.xyz/skills/donotify-voice-call-reminder/agent",
    "manifestUrl": "https://openagent3.xyz/skills/donotify-voice-call-reminder/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/donotify-voice-call-reminder/agent.md"
  }
}