โ† All skills
Tencent SkillHub ยท Developer Tools

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.

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

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.

โฌ‡ 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

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.0

Documentation

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

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

On heartbeat, check all cron jobs via cron list Filter for jobs where lastStatus = "error" and enabled = true Check if lastError matches network-related patterns Re-run eligible jobs via cron run 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

7:00 PM โ€” Evening briefing cron fires Network hiccup โ€” Telegram send fails Job marked lastStatus: "error", lastError: "Network request for 'sendMessage' failed!" 7:15 PM โ€” Connection restored, heartbeat runs Skill detects the failed job, sees it's a network error Retries the job โ†’ briefing delivered 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

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
1 Docs
  • SKILL.md Primary doc