{
  "schemaVersion": "1.0",
  "item": {
    "slug": "schedule",
    "name": "Schedule",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/ivangdavila/schedule",
    "canonicalUrl": "https://clawhub.ai/ivangdavila/schedule",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/schedule",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=schedule",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md",
      "jobs.md",
      "patterns.md",
      "traps.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-05-07T17:22:31.273Z",
      "expiresAt": "2026-05-14T17:22:31.273Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=afrexai-annual-report",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=afrexai-annual-report",
        "contentDisposition": "attachment; filename=\"afrexai-annual-report-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/schedule"
    },
    "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/schedule",
    "agentPageUrl": "https://openagent3.xyz/skills/schedule/agent",
    "manifestUrl": "https://openagent3.xyz/skills/schedule/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/schedule/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": "Data Storage",
        "body": "~/schedule/\n├── jobs.json           # Job definitions\n├── preferences.json    # Timezone, preferred times\n└── history/            # Execution logs\n    └── YYYY-MM.jsonl\n\nCreate on first use: mkdir -p ~/schedule/history"
      },
      {
        "title": "Scope",
        "body": "This skill:\n\n✅ Stores scheduled job definitions in ~/schedule/\n✅ Triggers jobs at specified times\n✅ Learns timezone and time preferences from user\n\nExecution model:\n\nUser explicitly defines WHAT the job does\nUser grants any permissions needed for the job\nSkill only handles WHEN, not WHAT\n\nThis skill does NOT:\n\n❌ Assume access to any external service\n❌ Modify system crontab or launchd\n❌ Execute jobs without user-defined instructions"
      },
      {
        "title": "Quick Reference",
        "body": "TopicFileCron expression syntaxpatterns.mdCommon mistakestraps.mdJob formatjobs.md"
      },
      {
        "title": "1. User Defines Everything",
        "body": "When user requests a scheduled task:\n\nWHAT: User specifies the action (may require other skills/permissions)\nWHEN: This skill handles timing\nHOW: User grants any needed access explicitly\n\nExample flow:\n\nUser: \"Every morning, summarize my emails\"\nAgent: \"I'll schedule this for 8am. This will need email access — \n        do you want me to use the mail skill for this?\"\nUser: \"Yes\"\n→ Job stored with explicit reference to mail skill"
      },
      {
        "title": "2. Simple Requests",
        "body": "RequestAction\"Remind me to X at Y\"Store job, confirm\"Every morning do X\"Ask time, store job\"Cancel X\"Remove from jobs.json"
      },
      {
        "title": "3. Confirmation Format",
        "body": "✅ [what user requested]\n📅 [when] ([timezone])\n🔧 [permissions/skills needed, if any]\n🆔 [id]"
      },
      {
        "title": "4. Job Persistence",
        "body": "In ~/schedule/jobs.json:\n\n{\n  \"daily_review\": {\n    \"cron\": \"0 9 * * 1-5\",\n    \"task\": \"User-defined task description\",\n    \"requires\": [\"mail\"],\n    \"created\": \"2024-03-15\",\n    \"timezone\": \"Europe/Madrid\"\n  }\n}\n\nThe requires field explicitly lists any skills/access the job needs."
      },
      {
        "title": "5. Execution",
        "body": "When scheduled time arrives:\n\nAgent executes the user-defined task\nUses only permissions user explicitly granted\nLogs result to history/"
      },
      {
        "title": "6. Preferences",
        "body": "After first job, store in preferences.json:\n\nTimezone\nPreferred \"morning\" / \"evening\" times\nDefault notification style"
      }
    ],
    "body": "Data Storage\n~/schedule/\n├── jobs.json           # Job definitions\n├── preferences.json    # Timezone, preferred times\n└── history/            # Execution logs\n    └── YYYY-MM.jsonl\n\n\nCreate on first use: mkdir -p ~/schedule/history\n\nScope\n\nThis skill:\n\n✅ Stores scheduled job definitions in ~/schedule/\n✅ Triggers jobs at specified times\n✅ Learns timezone and time preferences from user\n\nExecution model:\n\nUser explicitly defines WHAT the job does\nUser grants any permissions needed for the job\nSkill only handles WHEN, not WHAT\n\nThis skill does NOT:\n\n❌ Assume access to any external service\n❌ Modify system crontab or launchd\n❌ Execute jobs without user-defined instructions\nQuick Reference\nTopic\tFile\nCron expression syntax\tpatterns.md\nCommon mistakes\ttraps.md\nJob format\tjobs.md\nCore Rules\n1. User Defines Everything\n\nWhen user requests a scheduled task:\n\nWHAT: User specifies the action (may require other skills/permissions)\nWHEN: This skill handles timing\nHOW: User grants any needed access explicitly\n\nExample flow:\n\nUser: \"Every morning, summarize my emails\"\nAgent: \"I'll schedule this for 8am. This will need email access — \n        do you want me to use the mail skill for this?\"\nUser: \"Yes\"\n→ Job stored with explicit reference to mail skill\n\n2. Simple Requests\nRequest\tAction\n\"Remind me to X at Y\"\tStore job, confirm\n\"Every morning do X\"\tAsk time, store job\n\"Cancel X\"\tRemove from jobs.json\n3. Confirmation Format\n✅ [what user requested]\n📅 [when] ([timezone])\n🔧 [permissions/skills needed, if any]\n🆔 [id]\n\n4. Job Persistence\n\nIn ~/schedule/jobs.json:\n\n{\n  \"daily_review\": {\n    \"cron\": \"0 9 * * 1-5\",\n    \"task\": \"User-defined task description\",\n    \"requires\": [\"mail\"],\n    \"created\": \"2024-03-15\",\n    \"timezone\": \"Europe/Madrid\"\n  }\n}\n\n\nThe requires field explicitly lists any skills/access the job needs.\n\n5. Execution\n\nWhen scheduled time arrives:\n\nAgent executes the user-defined task\nUses only permissions user explicitly granted\nLogs result to history/\n6. Preferences\n\nAfter first job, store in preferences.json:\n\nTimezone\nPreferred \"morning\" / \"evening\" times\nDefault notification style"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/ivangdavila/schedule",
    "publisherUrl": "https://clawhub.ai/ivangdavila/schedule",
    "owner": "ivangdavila",
    "version": "1.0.2",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/schedule",
    "downloadUrl": "https://openagent3.xyz/downloads/schedule",
    "agentUrl": "https://openagent3.xyz/skills/schedule/agent",
    "manifestUrl": "https://openagent3.xyz/skills/schedule/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/schedule/agent.md"
  }
}