← All skills
Tencent SkillHub Β· AI

RescueClaw

Provides automatic checkpoint creation and rollback to safely recover from failures during risky operations like config changes or updates.

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

Provides automatic checkpoint creation and rollback to safely recover from failures during risky operations like config changes or updates.

⬇ 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, install.js, package.json, rescueclaw-checkpoint.js

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
0.2.1

Documentation

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

RescueClaw Skill

Provides checkpoint/rollback safety net for risky operations.

Before Risky Operations

Before modifying config, installing skills, or updating the gateway, create a checkpoint: const rescueclaw = require('./rescueclaw-checkpoint'); await rescueclaw.createCheckpoint('About to apply config changes'); RescueClaw will take an immediate backup. If the agent goes unresponsive within the rollback window, it auto-restores.

After Successful Operations

Clear the checkpoint: const rescueclaw = require('./rescueclaw-checkpoint'); await rescueclaw.clearCheckpoint();

Commands

The agent can also invoke RescueClaw CLI directly: rescueclaw backup β€” manual snapshot rescueclaw status β€” check health rescueclaw list β€” list backups

Installation

The daemon binary is bundled for supported platforms (linux/arm64). On install, it copies to ~/.local/bin/rescueclaw. For other platforms, download from GitHub Releases. Data is stored in ~/.openclaw/rescueclaw/ (user-local, no sudo required).

createCheckpoint(reason, rollbackWindowSec = 300)

Creates a checkpoint file that RescueClaw monitors. If the agent becomes unresponsive within the rollback window, RescueClaw will immediately restore from the checkpoint backup. Parameters: reason (string): Description of what operation is about to be performed rollbackWindowSec (number, optional): How many seconds to monitor for issues (default: 300) Returns: Promise<void>

clearCheckpoint()

Removes the checkpoint file, signaling that the risky operation completed successfully. Returns: Promise<void>

getStatus()

Gets RescueClaw daemon status by invoking the CLI. Returns: Promise<object> with health status details

Example: Safe Config Update

const fs = require('fs'); const rescueclaw = require('./rescueclaw-checkpoint'); async function updateConfig(newConfig) { // Create safety checkpoint await rescueclaw.createCheckpoint('Updating OpenClaw config', 180); try { // Perform the risky operation fs.writeFileSync('~/.openclaw/openclaw.json', JSON.stringify(newConfig)); // Restart gateway await exec('systemctl restart openclaw-gateway'); // If we get here, it worked! await rescueclaw.clearCheckpoint(); console.log('βœ… Config updated successfully'); } catch (err) { console.error('❌ Config update failed:', err); // Don't clear checkpoint - let RescueClaw auto-restore } }

Category context

Agent frameworks, memory systems, reasoning layers, and model-native orchestration.

Source: Tencent SkillHub

Largest current source with strong distribution and engagement signals.

Package contents

Included in package
2 Scripts1 Docs1 Config
  • SKILL.md Primary doc
  • install.js Scripts
  • rescueclaw-checkpoint.js Scripts
  • package.json Config