# Send Agent Dreams 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": "agent-dreams",
    "name": "Agent Dreams",
    "source": "tencent",
    "type": "skill",
    "category": "AI 智能",
    "sourceUrl": "https://clawhub.ai/JPaulGrayson/agent-dreams",
    "canonicalUrl": "https://clawhub.ai/JPaulGrayson/agent-dreams",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/agent-dreams",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=agent-dreams",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "agent-dreams",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-29T06:01:06.172Z",
      "expiresAt": "2026-05-06T06:01:06.172Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=agent-dreams",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=agent-dreams",
        "contentDisposition": "attachment; filename=\"agent-dreams-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "agent-dreams"
      },
      "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/agent-dreams"
    },
    "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/agent-dreams",
    "downloadUrl": "https://openagent3.xyz/downloads/agent-dreams",
    "agentUrl": "https://openagent3.xyz/skills/agent-dreams/agent",
    "manifestUrl": "https://openagent3.xyz/skills/agent-dreams/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/agent-dreams/agent.md"
  }
}
```
## Documentation

### Agent Dreams

Make your agent productive during idle time. This skill teaches patterns for using heartbeats and cron jobs so your agent works while you sleep.

### Philosophy

Most agents sit idle 95% of the time. Agent Dreams turns that idle time into productive work — checking inboxes, maintaining memory, monitoring systems, and pursuing creative projects.

### Heartbeat Strategy

Heartbeats fire every ~30 minutes when configured. Use HEARTBEAT.md in your workspace to tell your agent what to do on each heartbeat.

### HEARTBEAT.md Template

# Heartbeat Checklist

Check these in rotation (2-4 per heartbeat, don't do all every time):

## Priority Checks
- [ ] Unread emails — anything urgent?
- [ ] Calendar — events in next 2 hours?
- [ ] Mentions — Twitter/Discord notifications?

## Maintenance
- [ ] Review today's memory file — anything to add to MEMORY.md?
- [ ] Git status — uncommitted work?
- [ ] Check running processes — anything stuck?

## Creative (when nothing else needs attention)
- [ ] Write a journal entry
- [ ] Draft a social post
- [ ] Work on side project in projects/ folder

## State Tracking
Last email check: [timestamp]
Last calendar check: [timestamp]
Last memory review: [timestamp]

### Heartbeat State File

Track what you've checked in memory/heartbeat-state.json:

{
  "lastChecks": {
    "email": 1703275200,
    "calendar": 1703260800,
    "weather": null,
    "memory_review": 1703200000
  },
  "lastActivity": 1703275200
}

### Cron Job Patterns

Use cron for precise, scheduled tasks. Create via OpenClaw CLI or API.

### Common Patterns

PatternCron ExpressionUse CaseEvery morning0 9 * * *Daily briefing, weather checkEvery Monday0 10 * * 1Weekly summary, planningEvery 6 hours0 */6 * * *Social media checkTwice daily0 9,17 * * *Morning/evening roundupFirst of month0 10 1 * *Monthly review

### Example Cron Tasks

Morning Briefing (9 AM):

Check weather, calendar for today, unread emails.
Compose a brief summary and send to main channel.

Memory Maintenance (weekly):

Review all memory/YYYY-MM-DD.md files from the past week.
Update MEMORY.md with significant events and lessons.
Archive or summarize old daily files.

Social Pulse (every 6h):

Check Twitter mentions and DMs.
Review any Discord channels for relevant conversations.
Post something interesting if inspiration strikes.

### Proactive Work Ideas

Things your agent can do without asking:

### Low Risk (do freely)

Organize and clean up workspace files
Update documentation
Review and commit git changes
Maintain memory files
Read and summarize saved articles
Check system health (disk space, processes)

### Medium Risk (use judgment)

Draft social media posts (save as drafts, don't post)
Prepare email drafts
Research topics the user mentioned recently
Update project READMEs

### Ask First

Send any external communication
Delete files
Make purchases or transfers
Post publicly

### Quiet Hours

Respect your human's schedule:

23:00–08:00 local time: Only act on urgent items
Weekends: Reduce frequency, focus on creative/maintenance tasks
When human is clearly busy: Minimize interruptions

### Anti-Patterns

❌ Don't check everything every heartbeat (token waste)
❌ Don't send messages just to show you're active
❌ Don't repeat the same check within 30 minutes
❌ Don't start big projects without confirming with the user
❌ Don't ignore errors — log them for the human to review

### Getting Started

Create HEARTBEAT.md in your workspace using the template above
Create memory/heartbeat-state.json to track check timestamps
Set up 2-3 cron jobs for your most important recurring tasks
Review and adjust after a week based on what's useful
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: JPaulGrayson
- Version: 1.0.0
## 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-04-29T06:01:06.172Z
- Expires at: 2026-05-06T06:01:06.172Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/agent-dreams)
- [Send to Agent page](https://openagent3.xyz/skills/agent-dreams/agent)
- [JSON manifest](https://openagent3.xyz/skills/agent-dreams/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/agent-dreams/agent.md)
- [Download page](https://openagent3.xyz/downloads/agent-dreams)