Token导航 LogoToken导航TokenDH.com
效率需要联网clawhub未标认证来源可访问clear审计提醒

clawhub-skill-smart-cronClawHub 技能 smart cron

Agent Skill

clawhub-skill-smart-cron 用于补充效率相关能力,适合在 OpenClaw 中需要让 Agent 承接效率相关任务时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

14,760

周安装

634

GitHub Stars

公开资料未说明

下载量

5,173
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:clawhub-skill-smart-cron(ClawHub 技能 smart cron)
来源仓库:https://github.com/mariusfit/clawhub-skill-smart-cron
安装命令:
openclaw skills install clawhub-skill-smart-cron
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install clawhub-skill-smart-cron

简介

使用自然语言安排 OpenClaw 任务,并具有完整的 cron 生命周期、时区支持、故障警报和执行日志,而无需 cron 语法。

SKILL.md

Smart Cron — Natural Language Cron Scheduler for OpenClaw

Schedule any OpenClaw task using plain English. No cron syntax required. Just say what you want, when you want it.

What It Does

  • Natural language scheduling — "every weekday at 9am", "every 30 minutes", "first Monday of month"
  • Full cron job lifecycle — add, list, remove, pause, resume
  • Timezone-aware — schedule in any timezone (UTC, Europe/Bucharest, etc.)
  • Failure alerts — WhatsApp/Telegram alert if a job fails
  • Next run preview — shows exactly when each job runs next
  • Run logs — persisted history of every execution
  • Zero external dependencies — uses system cron + OpenClaw orchestration

Quick Start

# Add a daily digest job
smart-cron add "every weekday at 9am" --task "summarize my emails"

# Add an interval job
smart-cron add "every 30 minutes" --task "check server health"

# Monthly job
smart-cron add "first Monday of month at 10am" --task "generate monthly report"

# List all scheduled jobs
smart-cron list

# Show next run times
smart-cron next

# View job logs
smart-cron logs

# Pause a job (without deleting it)
smart-cron pause <job-id>

# Resume paused job
smart-cron resume <job-id>

# Remove a job
smart-cron remove <job-id>

Commands

CommandDescription
smart-cron add <schedule> --task <task>Schedule a new task
smart-cron listList all jobs with status
smart-cron remove <id>Remove a job
smart-cron nextShow next run time for all jobs
smart-cron run <id>Run a job immediately
smart-cron logs [id]View execution logs
smart-cron pause <id>Pause a job
smart-cron resume <id>Resume a paused job

Supported Schedule Expressions

Intervals

  • every 5 minutes*/5 * * * *
  • every hour0 * * * *
  • every 2 hours0 */2 * * *
  • every 30 minutes*/30 * * * *

Daily

  • every day at 9am0 9 * * *
  • every weekday at 9am0 9 * * 1-5
  • every weekend at noon0 12 * * 6,0
  • daily at midnight0 0 * * *

Weekly

  • every Monday at 8am0 8 * * 1
  • every Friday at 5pm0 17 * * 5

Monthly

  • first Monday of month → calculated and re-scheduled
  • 1st of month at 9am0 9 1 * *
  • last day of month → calculated dynamically

Custom cron (passthrough)

  • 0 */6 * * * → runs as-is for advanced users

Timezone Support

# Schedule in your local timezone
smart-cron add "every weekday at 9am" \
  --task "daily standup reminder" \
  --timezone Europe/Bucharest

# List shows times in both UTC and local tz

Failure Alerts

When a scheduled task fails, Smart Cron sends an alert via your configured channel:

⚠️ Smart Cron: "daily standup reminder" FAILED
Time: 09:00 EET (07:00 UTC)
Error: Task timed out after 300s
Last success: yesterday at 09:00
Logs: smart-cron logs job-123

Data Storage

All job configs and logs stored locally at ~/.openclaw/workspace/smart-cron-data/. SQLite, no telemetry.

Configuration

Edit ~/.openclaw/workspace/smart-cron-data/config.json:

{
  "default_timezone": "Europe/Bucharest",
  "alert_channel": "whatsapp",
  "alert_on_failure": true,
  "log_retention_days": 30
}

Use Cases

Morning Briefing

smart-cron add "every weekday at 8am" --task "summarize overnight emails and news"

Uptime Monitoring

smart-cron add "every 5 minutes" --task "check all APIs and alert if any is down"

Weekly Reports

smart-cron add "every Friday at 5pm" --task "generate weekly work summary and log to MEMORY.md"

Monthly Cleanup

smart-cron add "1st of month at 2am" --task "clean old logs and archive memory files older than 90 days"

Requirements

  • OpenClaw 1.0+
  • Python 3.8+ (for schedule parsing)
  • cron daemon (standard on Linux/macOS)

Source & Issues

  • Source: https://github.com/mariusfit/smart-cron
  • Issues: https://github.com/mariusfit/smart-cron/issues
  • Author: @mariusfit

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

96.23%
按下载量换算4,978

安全审计

VirusTotal

可疑

ClawScan

可疑

Static analysis

未展示

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills