← 返回
开发者工具

Cron Retry

Auto-retry failed cron jobs on connection recovery. Use when cron jobs fail due to network errors and should be retried when connectivity is restored. Integrates with heartbeat to detect failed jobs and re-run them automatically.
连接恢复时自动重试失败的定时任务。适用于网络错误导致的任务失败。集成心跳机制检测失败任务并自动重新执行。
jrbobbyhansen-pixel
开发者工具 clawhub v1.0.0 1 版本 99128.2 Key: 无需
★ 3
Stars
📥 5,057
下载
💾 296
安装
1
版本
#latest

概述

Cron Retry Skill

Automatically detect and retry cron jobs that failed due to network/connection errors.

Quick Start (Heartbeat Integration)

Add this to your HEARTBEAT.md:

## Cron Recovery Check
Check for cron jobs with lastStatus: "error". If the error matches network patterns (connection error, sendMessage failed, fetch failed, ETIMEDOUT, ECONNREFUSED), retry the job using cron tool with action: "run" and the job ID. Report what was recovered.

That's it. On each heartbeat, failed network jobs get retried automatically.

How It Works

  1. On heartbeat, check all cron jobs via cron list
  2. Filter for jobs where lastStatus = "error" and enabled = true
  3. Check if lastError matches network-related patterns
  4. Re-run eligible jobs via cron run
  5. Report results

Network Error Patterns (Retryable)

These errors indicate transient network issues worth retrying:

  • Network request.*failed
  • Connection error
  • ECONNREFUSED
  • ETIMEDOUT
  • ENOTFOUND
  • sendMessage.*failed
  • fetch failed
  • socket hang up

What Gets Retried vs Skipped

Retried:

  • Network timeouts
  • Connection refused
  • Message send failures
  • DNS lookup failures

Skipped (not retried):

  • Logic errors (bad config, missing data)
  • Auth failures
  • Disabled jobs
  • Jobs that just ran successfully

Manual Recovery Check

To check and retry failed jobs manually:

# List all jobs and their status
clawdbot cron list

# Find failed jobs
clawdbot cron list | jq '.jobs[] | select(.state.lastStatus == "error") | {name, error: .state.lastError}'

# Retry a specific job
clawdbot cron run --id <JOB_ID>

Agent Implementation

When implementing the heartbeat check:

1. Call cron tool with action: "list"
2. For each job in response.jobs:
   - Skip if job.enabled !== true
   - Skip if job.state.lastStatus !== "error"
   - Check if job.state.lastError matches network patterns
   - If retryable: call cron tool with action: "run", jobId: job.id
3. Report: "Recovered X jobs" or "No failed jobs to recover"

Example Scenario

  1. 7:00 PM — Evening briefing cron fires
  2. Network hiccup — Telegram send fails
  3. Job marked lastStatus: "error", lastError: "Network request for 'sendMessage' failed!"
  4. 7:15 PM — Connection restored, heartbeat runs
  5. Skill detects the failed job, sees it's a network error
  6. Retries the job → briefing delivered
  7. Reports: "Recovered 1 job: evening-wrap-briefing"

Safety

  • Only retries transient network errors
  • Respects job enabled state
  • Won't create retry loops (checks lastRunAtMs)
  • Reports all recovery attempts

版本历史

共 1 个版本

  • v1.0.0 当前
    2026-03-28 10:44 安全 安全

安全检测

腾讯云安全 (Keen)

安全,无风险
查看报告

腾讯云安全 (Sanbu)

安全,无风险
查看报告

🔗 相关推荐

ai-intelligence

Memory Setup

jrbobbyhansen-pixel
启用并配置 Moltbot/Clawdbot 记忆搜索以实现持久上下文。适用于初始化记忆、解决“金鱼脑”问题或协助用户配置 memorySearch。涵盖 MEMORY.md、日志记录及向量搜索设置。
★ 131 📥 46,847
developer-tools

CodeConductor.ai

larsonreever
AI驱动平台,提供快速全栈开发、智能体、工作流自动化及低代码AI集成的可扩展产品创建。
★ 65 📥 179,837
developer-tools

Github

steipete
使用 `gh` CLI 与 GitHub 交互,通过 `gh issue`、`gh pr`、`gh run` 和 `gh api` 管理议题、PR、CI 运行及高级查询。
★ 666 📥 323,786