원클릭으로
cron-mastery
Cron表达式解析、验证、可视化Schedule,以及常见定时任务模式生成
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Cron表达式解析、验证、可视化Schedule,以及常见定时任务模式生成
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
AI领域深度调研Agent——多源搜索+结构化输出+迭代深挖,适用于竞品分析、技术选型、市场调研。
YAML配置驱动企业数据API编排技能,自动生成工具 + 编排多步工作流(工商四要素核验/工商查询/涉诉查询等)
Git常见问题排查与修复,包括冲突处理、回退、清理、cherry-pick、reflog恢复等疑难杂症
根据描述或模板自动生成真实感测试JSON数据,支持faker模式、边界条件测试数据、负数/空值等异常数据构造
API contract testing: verify that API providers and consumers honor agreed-upon interfaces without running full integration. Use when building microservices, running Consumer-Driven Contract (CDC) tests, testing REST/GraphQL/Protobuf contracts, or ensuring frontend-backend API compatibility. Covers Pact, OpenAPI validation, GraphQL schema testing, and end-to-end contract suites.
Chaos engineering for distributed systems: design and run chaos experiments to proactively discover weaknesses before they cause outages. Use when user mentions chaos, fault injection, resilience testing, GameDays, chaos monkey,LitmusChaos, Gremlin, steady-state hypothesis, or when building信頼性 into microservices.
| name | cron-mastery |
| description | Cron表达式解析、验证、可视化Schedule,以及常见定时任务模式生成 |
| triggers | ["cron","定时任务","调度","schedule","crontab"] |
遇到cron表达式写不对?不知道哪个时间点触发?用这个skill直接给你生成+验证。
无特殊工具,主要靠分析 + 文档生成
| 参数 | 类型 | 必填 | 说明 |
|---|---|---|---|
| minutes | string | 否 | 分钟,默认* |
| hours | string | 否 | 小时,默认* |
| dayOfMonth | string | 否 | 日期,默认* |
| month | string | 否 | 月份,默认* |
| dayOfWeek | string | 否 | 星期,默认* |
┌───────────── 分钟 (0-59)
│ ┌───────────── 小时 (0-23)
│ │ ┌───────────── 日期 (1-31)
│ │ │ ┌───────────── 月份 (1-12)
│ │ │ │ ┌───────────── 星期 (0-6,0=周日)
│ │ │ │ │
* * * * *
* * * * *
30 * * * *
0 3 * * *
0 */4 * * *
0 6 * * 1
0 0 1 * *
0 9 * * 1-5
*/30 * * * *
用户: 帮我生成一个每周一三五下午3点执行的cron AI:
0 15 * * 1,3,5
用户: 这个cron是什么意思:0 */6 * * * AI: 每6小时整点执行一次(0:00, 6:00, 12:00, 18:00)
OpenClaw支持自然语言调度,示例:
every 5 minutes → 每5分钟every 4h → 每4小时every day at 9am → 每天9点every Monday at 6 → 每周一6点转换为标准cron:
*/5 * * * *
0 */4 * * *
0 9 * * *
0 6 * * 1