← 返回
效率工具 中文

Schedule

Program recurring or one-time tasks. User defines what to do, skill handles when.
设置定期或一次性任务。用户定义任务内容,技能负责定时执行。
ivangdavila
效率工具 clawhub v1.0.2 1 版本 99850.3 Key: 无需
★ 5
Stars
📥 5,236
下载
💾 372
安装
1
版本
#latest

概述

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

TopicFile
-------------
Cron expression syntaxpatterns.md
Common mistakestraps.md
Job formatjobs.md

Core Rules

1. User Defines Everything

When user requests a scheduled task:

  1. WHAT: User specifies the action (may require other skills/permissions)
  2. WHEN: This skill handles timing
  3. 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

版本历史

共 1 个版本

  • v1.0.2 当前
    2026-03-28 11:01 安全 安全

安全检测

腾讯云安全 (Keen)

安全,无风险
查看报告

腾讯云安全 (Sanbu)

安全,无风险
查看报告

🔗 相关推荐

ai-intelligence

Self-Improving + Proactive Agent

ivangdavila
自我反思+自我批评+自我学习+自组织记忆。智能体评估自身工作、发现错误并持续改进。
★ 1,359 📥 318,562
productivity

Baidu web search

ide-rea
使用百度AI搜索引擎(BDSE)进行网络搜索。适用于获取实时信息、文档资料或研究课题。
★ 237 📥 105,605
productivity

Word / DOCX

ivangdavila
创建、检查和编辑 Microsoft Word 文档及 DOCX 文件,支持样式、编号、修订记录、表格、分节符及兼容性检查等功能。
★ 439 📥 147,768