{
  "schemaVersion": "1.0",
  "item": {
    "slug": "casual-cron",
    "name": "Casual Cron",
    "source": "tencent",
    "type": "skill",
    "category": "通讯协作",
    "sourceUrl": "https://clawhub.ai/gostlightai/casual-cron",
    "canonicalUrl": "https://clawhub.ai/gostlightai/casual-cron",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/casual-cron",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=casual-cron",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "CHANGELOG.md",
      "SKILL.md",
      "_meta.json",
      "scripts/cron_builder.py",
      "skills/casual-cron/CHANGELOG.md",
      "skills/casual-cron/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/casual-cron"
    },
    "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/casual-cron",
    "agentPageUrl": "https://openagent3.xyz/skills/casual-cron/agent",
    "manifestUrl": "https://openagent3.xyz/skills/casual-cron/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/casual-cron/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": "Casual Cron",
        "body": "Create Clawdbot cron jobs from natural language. Supports one-shot and repeating schedules with safe run-guard rules."
      },
      {
        "title": "Cron Run Guard (Hard Rules)",
        "body": "When running inside a cron job: do NOT troubleshoot, do NOT restart gateway, and do NOT check time.\nDo NOT send acknowledgements or explanations.\nOutput ONLY the exact message payload and then stop."
      },
      {
        "title": "How It Works",
        "body": "Agent detects scheduling intent from user message (or /at / /every command)\nParses: time, frequency, channel, destination, message\nBuilds openclaw cron add command with correct flags\nConfirms parsed time, job name, and job id with user before executing"
      },
      {
        "title": "Scheduling Rules",
        "body": "When a message starts with /at or /every, schedule via the CLI (NOT the cron tool API).\n\nUse: openclaw cron add"
      },
      {
        "title": "/at (one-shot)",
        "body": "If user gives a clock time (e.g., \"3pm\"), convert to ISO with offset computed for America/New_York on that date (DST-safe).\nPrefer relative times for near-term reminders (e.g., --at \"20m\").\nUse --session isolated --message \"Output exactly: <task>\".\nAlways include --delete-after-run.\nAlways include --deliver --channel <channel> --to <destination>."
      },
      {
        "title": "/every (repeating)",
        "body": "If interval: use --every \"<duration>\" (no timezone needed).\nIf clock time: use --cron \"<expr>\" --tz \"America/New_York\".\nUse --session isolated --message \"Output exactly: <task>\".\nAlways include --deliver --channel <channel> --to <destination>."
      },
      {
        "title": "Confirmation",
        "body": "Always confirm parsed time, job name, and job id with the user before finalizing."
      },
      {
        "title": "Command Reference",
        "body": "One-shot (clock time, DST-aware):\n\nopenclaw cron add \\\n  --name \"Reminder example\" \\\n  --at \"2026-01-28T15:00:00-05:00\" \\\n  --session isolated \\\n  --message \"Output exactly: <TASK>\" \\\n  --deliver --channel telegram --to <TELEGRAM_CHAT_ID> \\\n  --delete-after-run\n\nOne-shot (relative time):\n\nopenclaw cron add \\\n  --name \"Reminder in 20m\" \\\n  --at \"20m\" \\\n  --session isolated \\\n  --message \"Output exactly: <TASK>\" \\\n  --deliver --channel telegram --to <TELEGRAM_CHAT_ID> \\\n  --delete-after-run\n\nRepeating (clock time, DST-aware):\n\nopenclaw cron add \\\n  --name \"Daily 3pm reminder\" \\\n  --cron \"0 15 * * *\" --tz \"America/New_York\" \\\n  --session isolated \\\n  --message \"Output exactly: <TASK>\" \\\n  --deliver --channel telegram --to <TELEGRAM_CHAT_ID>\n\nRepeating (interval):\n\nopenclaw cron add \\\n  --name \"Every 2 hours\" \\\n  --every \"2h\" \\\n  --session isolated \\\n  --message \"Output exactly: <TASK>\" \\\n  --deliver --channel telegram --to <TELEGRAM_CHAT_ID>"
      },
      {
        "title": "Configuration",
        "body": "SettingValueDefault timezoneAmerica/New_York (DST-aware)Default channeltelegram (override via CRON_DEFAULT_CHANNEL env var)Supported channelstelegram, whatsapp, slack, discord, signal"
      },
      {
        "title": "Time Formats",
        "body": "InputCron8am0 8 * * *8:45pm45 20 * * *noon0 12 * * *midnight0 0 * * *14:3030 14 * * *"
      },
      {
        "title": "Frequencies",
        "body": "InputBehaviordaily / every dayDaily at specified timeweekdays / mon-friMon-Fri at specified timemondays / every mondayWeekly on Mondayhourly / every hourEvery hour at :00every 2 hours0 */2 * * *weeklyWeekly (defaults to Monday)monthlyMonthly (1st of month)"
      }
    ],
    "body": "Casual Cron\n\nCreate Clawdbot cron jobs from natural language. Supports one-shot and repeating schedules with safe run-guard rules.\n\nCron Run Guard (Hard Rules)\nWhen running inside a cron job: do NOT troubleshoot, do NOT restart gateway, and do NOT check time.\nDo NOT send acknowledgements or explanations.\nOutput ONLY the exact message payload and then stop.\nHow It Works\nAgent detects scheduling intent from user message (or /at / /every command)\nParses: time, frequency, channel, destination, message\nBuilds openclaw cron add command with correct flags\nConfirms parsed time, job name, and job id with user before executing\nScheduling Rules\n\nWhen a message starts with /at or /every, schedule via the CLI (NOT the cron tool API).\n\nUse: openclaw cron add\n\n/at (one-shot)\nIf user gives a clock time (e.g., \"3pm\"), convert to ISO with offset computed for America/New_York on that date (DST-safe).\nPrefer relative times for near-term reminders (e.g., --at \"20m\").\nUse --session isolated --message \"Output exactly: <task>\".\nAlways include --delete-after-run.\nAlways include --deliver --channel <channel> --to <destination>.\n/every (repeating)\nIf interval: use --every \"<duration>\" (no timezone needed).\nIf clock time: use --cron \"<expr>\" --tz \"America/New_York\".\nUse --session isolated --message \"Output exactly: <task>\".\nAlways include --deliver --channel <channel> --to <destination>.\nConfirmation\nAlways confirm parsed time, job name, and job id with the user before finalizing.\nCommand Reference\n\nOne-shot (clock time, DST-aware):\n\nopenclaw cron add \\\n  --name \"Reminder example\" \\\n  --at \"2026-01-28T15:00:00-05:00\" \\\n  --session isolated \\\n  --message \"Output exactly: <TASK>\" \\\n  --deliver --channel telegram --to <TELEGRAM_CHAT_ID> \\\n  --delete-after-run\n\n\nOne-shot (relative time):\n\nopenclaw cron add \\\n  --name \"Reminder in 20m\" \\\n  --at \"20m\" \\\n  --session isolated \\\n  --message \"Output exactly: <TASK>\" \\\n  --deliver --channel telegram --to <TELEGRAM_CHAT_ID> \\\n  --delete-after-run\n\n\nRepeating (clock time, DST-aware):\n\nopenclaw cron add \\\n  --name \"Daily 3pm reminder\" \\\n  --cron \"0 15 * * *\" --tz \"America/New_York\" \\\n  --session isolated \\\n  --message \"Output exactly: <TASK>\" \\\n  --deliver --channel telegram --to <TELEGRAM_CHAT_ID>\n\n\nRepeating (interval):\n\nopenclaw cron add \\\n  --name \"Every 2 hours\" \\\n  --every \"2h\" \\\n  --session isolated \\\n  --message \"Output exactly: <TASK>\" \\\n  --deliver --channel telegram --to <TELEGRAM_CHAT_ID>\n\nConfiguration\nSetting\tValue\nDefault timezone\tAmerica/New_York (DST-aware)\nDefault channel\ttelegram (override via CRON_DEFAULT_CHANNEL env var)\nSupported channels\ttelegram, whatsapp, slack, discord, signal\nSupported Patterns\nTime Formats\nInput\tCron\n8am\t0 8 * * *\n8:45pm\t45 20 * * *\nnoon\t0 12 * * *\nmidnight\t0 0 * * *\n14:30\t30 14 * * *\nFrequencies\nInput\tBehavior\ndaily / every day\tDaily at specified time\nweekdays / mon-fri\tMon-Fri at specified time\nmondays / every monday\tWeekly on Monday\nhourly / every hour\tEvery hour at :00\nevery 2 hours\t0 */2 * * *\nweekly\tWeekly (defaults to Monday)\nmonthly\tMonthly (1st of month)"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/gostlightai/casual-cron",
    "publisherUrl": "https://clawhub.ai/gostlightai/casual-cron",
    "owner": "gostlightai",
    "version": "1.2.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/casual-cron",
    "downloadUrl": "https://openagent3.xyz/downloads/casual-cron",
    "agentUrl": "https://openagent3.xyz/skills/casual-cron/agent",
    "manifestUrl": "https://openagent3.xyz/skills/casual-cron/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/casual-cron/agent.md"
  }
}