โ† All skills
Tencent SkillHub ยท Developer Tools

Schedule

Program recurring or one-time tasks. User defines what to do, skill handles when.

skill openclawclawhub Free
0 Downloads
0 Stars
0 Installs
0 Score
High Signal

Program recurring or one-time tasks. User defines what to do, skill handles when.

โฌ‡ 0 downloads โ˜… 0 stars Unverified but indexed

Install for OpenClaw

Quick setup
  1. Download the package from Yavira.
  2. Extract the archive and review SKILL.md first.
  3. Import or place the package into your OpenClaw setup.

Requirements

Target platform
OpenClaw
Install method
Manual import
Extraction
Extract archive
Prerequisites
OpenClaw
Primary doc
SKILL.md

Package facts

Download mode
Yavira redirect
Package format
ZIP package
Source platform
Tencent SkillHub
What's included
SKILL.md, jobs.md, patterns.md, traps.md

Validation

  • Use the Yavira download entry.
  • Review SKILL.md after the package is downloaded.
  • Confirm the extracted package contains the expected setup assets.

Install with your agent

Agent handoff

Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.

  1. Download the package from Yavira.
  2. Extract it into a folder your agent can access.
  3. Paste one of the prompts below and point your agent at the extracted folder.
New install

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

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.

Trust & source

Release facts

Source
Tencent SkillHub
Verification
Indexed source record
Version
1.0.2

Documentation

ClawHub primary doc Primary doc: SKILL.md 9 sections Open source page

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

Category context

Code helpers, APIs, CLIs, browser automation, testing, and developer operations.

Source: Tencent SkillHub

Largest current source with strong distribution and engagement signals.

Package contents

Included in package
4 Docs
  • SKILL.md Primary doc
  • jobs.md Docs
  • patterns.md Docs
  • traps.md Docs