{
  "schemaVersion": "1.0",
  "item": {
    "slug": "reminder-guardian",
    "name": "Reminder Guardian",
    "source": "tencent",
    "type": "skill",
    "category": "效率提升",
    "sourceUrl": "https://clawhub.ai/a-suraj-bhatti/reminder-guardian",
    "canonicalUrl": "https://clawhub.ai/a-suraj-bhatti/reminder-guardian",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/reminder-guardian",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=reminder-guardian",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "scripts/reminder_guard.py",
      "scripts/time_helper.py",
      "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-30T16:55:25.780Z",
      "expiresAt": "2026-05-07T16:55:25.780Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
        "contentDisposition": "attachment; filename=\"network-1.0.0.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/reminder-guardian"
    },
    "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/reminder-guardian",
    "agentPageUrl": "https://openagent3.xyz/skills/reminder-guardian/agent",
    "manifestUrl": "https://openagent3.xyz/skills/reminder-guardian/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/reminder-guardian/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": "Reminder Guardian",
        "body": "A very lightweight skill that turns every reminder request into a logged record plus a ready-to-run openclaw cron add blueprint. Installers use the CLI to record the reminder, then immediately paste the printed blueprint into openclaw cron add, and finally mark the reminder as scheduled so nothing slips through."
      },
      {
        "title": "Quick steps anyone can follow",
        "body": "Log the reminder: python3 skills/reminder-guardian/scripts/reminder_guard.py add --message \"Take meds\" --when 2026-02-19T17:00:00 --label \"Medication\"\n\nWrites a JSON entry under memory/reminder-log.json (status pending).\nPrints the cron blueprint that contains the schedule + payload for the reminder.\n\n\n\nCreate the cron job: Copy the printed blueprint and run openclaw cron add (choose the delivery channel that fits your workflow).\n\n\nTell the skill the job exists: python3 skills/reminder-guardian/scripts/reminder_guard.py blueprint <id> --mark sets status to scheduled so the log reflects the Cron job is active.\n\n\nAfter the reminder fires: python3 skills/reminder-guardian/scripts/reminder_guard.py update <id> --status sent keeps the log accurate. Nothing happens automatically—the CLI merely tracks your intention and status changes.\n\n\nSee the next reminder: python3 skills/reminder-guardian/scripts/reminder_guard.py next prints the next pending entry plus its blueprint, which is handy if you want to re-schedule or re-run a reminder."
      },
      {
        "title": "Time helper and consistency",
        "body": "The skill ships with its own scripts/time_helper.py. Every command that needs “the current time” calls that helper before printing or logging anything, keeping the workflow aligned with your canonical time source."
      },
      {
        "title": "Why this matters",
        "body": "The log is auditable (memory/reminder-log.json, ignored from git).\nThe blueprint gives you a human-reviewed cron payload before you schedule anything.\nAnyone who installs this skill follows the same steps, keeping delivery explicit and safe.\n\nPublishing tip: document that the blueprint must be copied into openclaw cron add—without that manual step, reminders never run. Once you publish, future installers will read this explanation and understand exactly how the flow works."
      }
    ],
    "body": "Reminder Guardian\n\nA very lightweight skill that turns every reminder request into a logged record plus a ready-to-run openclaw cron add blueprint. Installers use the CLI to record the reminder, then immediately paste the printed blueprint into openclaw cron add, and finally mark the reminder as scheduled so nothing slips through.\n\nQuick steps anyone can follow\n\nLog the reminder: python3 skills/reminder-guardian/scripts/reminder_guard.py add --message \"Take meds\" --when 2026-02-19T17:00:00 --label \"Medication\"\n\nWrites a JSON entry under memory/reminder-log.json (status pending).\nPrints the cron blueprint that contains the schedule + payload for the reminder.\n\nCreate the cron job: Copy the printed blueprint and run openclaw cron add (choose the delivery channel that fits your workflow).\n\nTell the skill the job exists: python3 skills/reminder-guardian/scripts/reminder_guard.py blueprint <id> --mark sets status to scheduled so the log reflects the Cron job is active.\n\nAfter the reminder fires: python3 skills/reminder-guardian/scripts/reminder_guard.py update <id> --status sent keeps the log accurate. Nothing happens automatically—the CLI merely tracks your intention and status changes.\n\nSee the next reminder: python3 skills/reminder-guardian/scripts/reminder_guard.py next prints the next pending entry plus its blueprint, which is handy if you want to re-schedule or re-run a reminder.\n\nTime helper and consistency\n\nThe skill ships with its own scripts/time_helper.py. Every command that needs “the current time” calls that helper before printing or logging anything, keeping the workflow aligned with your canonical time source.\n\nWhy this matters\nThe log is auditable (memory/reminder-log.json, ignored from git).\nThe blueprint gives you a human-reviewed cron payload before you schedule anything.\nAnyone who installs this skill follows the same steps, keeping delivery explicit and safe.\n\nPublishing tip: document that the blueprint must be copied into openclaw cron add—without that manual step, reminders never run. Once you publish, future installers will read this explanation and understand exactly how the flow works."
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/a-suraj-bhatti/reminder-guardian",
    "publisherUrl": "https://clawhub.ai/a-suraj-bhatti/reminder-guardian",
    "owner": "a-suraj-bhatti",
    "version": "0.1.1",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/reminder-guardian",
    "downloadUrl": "https://openagent3.xyz/downloads/reminder-guardian",
    "agentUrl": "https://openagent3.xyz/skills/reminder-guardian/agent",
    "manifestUrl": "https://openagent3.xyz/skills/reminder-guardian/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/reminder-guardian/agent.md"
  }
}