# Send scheduler for discord to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- 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.
## Suggested prompts
### New install

```text
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.
```
### Upgrade existing

```text
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.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "scheduler-for-discord",
    "name": "scheduler for discord",
    "source": "tencent",
    "type": "skill",
    "category": "通讯协作",
    "sourceUrl": "https://clawhub.ai/AaronWander/scheduler-for-discord",
    "canonicalUrl": "https://clawhub.ai/AaronWander/scheduler-for-discord",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/scheduler-for-discord",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=scheduler-for-discord",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "skills.md"
    ],
    "downloadMode": "redirect",
    "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/scheduler-for-discord"
    },
    "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."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/scheduler-for-discord",
    "downloadUrl": "https://openagent3.xyz/downloads/scheduler-for-discord",
    "agentUrl": "https://openagent3.xyz/skills/scheduler-for-discord/agent",
    "manifestUrl": "https://openagent3.xyz/skills/scheduler-for-discord/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/scheduler-for-discord/agent.md"
  }
}
```
## Documentation

### Scheduler (cron)

This skill schedules future actions using Moltbot’s cron CLI (via exec), defaulting to delivering the result back into the current Discord channel when available.

### What to collect

When: either a one-shot time (in 2 minutes, at 20:00) or a recurring schedule (every day at 20:00).
Timezone: ask if ambiguous; otherwise prefer the gateway host’s timezone.
What: what the message should say, or what should be generated.
Where:

If the request came from Discord, use the message context’s channel id and set delivery target to channel:<id>.
If the request came from another surface (webchat/terminal), ask for a destination (Discord channel ID, Telegram chat ID, etc).

### Key rules

Cron jobs run in the background, so there is no “current channel” at execution time. Always capture the channel id at creation time and bake it into the cron job (--channel discord --to channel:<id>).
Use an isolated agent job for scheduled messages (prevents the “Main jobs require --system-event” error).
Avoid ambiguous Discord names like #test; always deliver to an explicit channel:<id> or user:<id>.

### One-shot message to the current Discord channel

If the user says “remind me in 2 minutes” (or similar), schedule a one-shot isolated agent job:

moltbot cron add \\
  --name "<short-name>" \\
  --session isolated \\
  --at 2m \\
  --agent main \\
  --message "<message text>" \\
  --deliver \\
  --channel discord \\
  --to channel:<DISCORD_CHANNEL_ID> \\
  --delete-after-run

Notes:

--at accepts 2m, 20m, 1h, or an ISO timestamp. Do not use +2m.

### Daily “tomorrow plan” at 20:00 (recurring)

If the user says “every day at 8pm, send me tomorrow’s work plan”, create a recurring cron job that instructs the agent to generate the plan and deliver it:

moltbot cron add \\
  --name "tomorrow-plan" \\
  --session isolated \\
  --cron "0 20 * * *" \\
  --tz "Asia/Shanghai" \\
  --agent main \\
  --message "At execution time, write tomorrow's work plan. Keep it concise. Include: priorities, schedule blocks, risks, and a short checklist." \\
  --deliver \\
  --channel discord \\
  --to channel:<DISCORD_CHANNEL_ID>

### Verify

moltbot cron list
moltbot cron runs --id <JOB_ID>

### How to find the current Discord channel id

When the user request comes from Discord, the message context includes channel identifiers (e.g. channel=... / discord channel id ...). Use that value for channel:<id>.

If the context does not include it, ask the user to provide a Discord message link (from which you can extract the channel id), or the channel id directly.
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: AaronWander
- Version: 1.0.0
## Source health
- Status: healthy
- Source download looks usable.
- Yavira can redirect you to the upstream package for this source.
- Health scope: source
- Reason: direct_download_ok
- Checked at: 2026-04-30T16:55:25.780Z
- Expires at: 2026-05-07T16:55:25.780Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/scheduler-for-discord)
- [Send to Agent page](https://openagent3.xyz/skills/scheduler-for-discord/agent)
- [JSON manifest](https://openagent3.xyz/skills/scheduler-for-discord/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/scheduler-for-discord/agent.md)
- [Download page](https://openagent3.xyz/downloads/scheduler-for-discord)