# Send Schedule 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": "schedule",
    "name": "Schedule",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/ivangdavila/schedule",
    "canonicalUrl": "https://clawhub.ai/ivangdavila/schedule",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/schedule",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=schedule",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "jobs.md",
      "patterns.md",
      "traps.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "schedule",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-08T10:44:22.762Z",
      "expiresAt": "2026-05-15T10:44:22.762Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=schedule",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=schedule",
        "contentDisposition": "attachment; filename=\"schedule-1.0.2.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "schedule"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "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."
      ]
    }
  },
  "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"
  }
}
```
## Documentation

### Data Storage

~/schedule/
├── jobs.json           # Job definitions
├── preferences.json    # Timezone, preferred times
└── history/            # Execution logs
    └── YYYY-MM.jsonl

Create on first use: mkdir -p ~/schedule/history

### Scope

This skill:

✅ Stores scheduled job definitions in ~/schedule/
✅ Triggers jobs at specified times
✅ Learns timezone and time preferences from user

Execution model:

User explicitly defines WHAT the job does
User grants any permissions needed for the job
Skill only handles WHEN, not WHAT

This skill does NOT:

❌ Assume access to any external service
❌ Modify system crontab or launchd
❌ Execute jobs without user-defined instructions

### Quick Reference

TopicFileCron expression syntaxpatterns.mdCommon mistakestraps.mdJob formatjobs.md

### 1. User Defines Everything

When user requests a scheduled task:

WHAT: User specifies the action (may require other skills/permissions)
WHEN: This skill handles timing
HOW: User grants any needed access explicitly

Example flow:

User: "Every morning, summarize my emails"
Agent: "I'll schedule this for 8am. This will need email access — 
        do you want me to use the mail skill for this?"
User: "Yes"
→ Job stored with explicit reference to mail skill

### 2. Simple Requests

RequestAction"Remind me to X at Y"Store job, confirm"Every morning do X"Ask time, store job"Cancel X"Remove from jobs.json

### 3. Confirmation Format

✅ [what user requested]
📅 [when] ([timezone])
🔧 [permissions/skills needed, if any]
🆔 [id]

### 4. Job Persistence

In ~/schedule/jobs.json:

{
  "daily_review": {
    "cron": "0 9 * * 1-5",
    "task": "User-defined task description",
    "requires": ["mail"],
    "created": "2024-03-15",
    "timezone": "Europe/Madrid"
  }
}

The requires field explicitly lists any skills/access the job needs.

### 5. Execution

When scheduled time arrives:

Agent executes the user-defined task
Uses only permissions user explicitly granted
Logs result to history/

### 6. Preferences

After first job, store in preferences.json:

Timezone
Preferred "morning" / "evening" times
Default notification style
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: ivangdavila
- Version: 1.0.2
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-05-08T10:44:22.762Z
- Expires at: 2026-05-15T10:44:22.762Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/schedule)
- [Send to Agent page](https://openagent3.xyz/skills/schedule/agent)
- [JSON manifest](https://openagent3.xyz/skills/schedule/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/schedule/agent.md)
- [Download page](https://openagent3.xyz/downloads/schedule)