Keep My Claw: Backup Service for OpenClaw Workspaces

Keep My Claw is a backup service specifically designed for OpenClaw workspaces that addresses the problem of losing agent state during reinstalls, disk issues, or machine migrations. The service encrypts all data locally before upload using your passphrase, ensuring the server never sees plaintext data.
What it backs up
- Workspace data
- Memory files
- Cron jobs
- Skills
- Credentials
- Config snapshots
How it works
The service stores encrypted snapshots in Cloudflare R2 and allows restoration to any machine with one command. It runs on a schedule via cron for automatic backups.
Setup
clawhub install keepmyclaw
After installation, tell your agent to configure backups. The skill handles scheduling, encryption, and uploads, with the first backup typically completing within minutes.
Pricing
$5/month or $19/year, covering up to 100 agents. Backups remain available for 30 days after cancellation.
Why not use existing tools?
The creator notes limitations with common alternatives:
- Git doesn't handle credentials/config well (and you probably don't want API keys in a repo)
- rsync needs a destination server and doesn't encrypt at rest
- Time Machine is local only — doesn't help with machine migrations
- None have a restore drill to verify recovery works before you need it
Keep My Claw encrypts client-side, stores remotely, and allows safe restore drills into temporary directories to verify functionality without affecting live workspaces.
Documentation and resources
- Docs: https://keepmyclaw.com/docs
- Backup checklist: https://keepmyclaw.com/blog/openclaw-backup-checklist.html
- How to verify your first backup: https://keepmyclaw.com/blog/openclaw-first-backup-proof.html
- Restoring onto a different machine: https://keepmyclaw.com/blog/openclaw-new-machine-restore.html
📖 Read the full source: r/clawdbot
👀 See Also

TradingView MCP Server Enables Claude to Backtest Trading Strategies
A developer has released an MCP server that allows Claude to backtest six trading strategies using Yahoo Finance data without API keys. Setup involves adding one line to the claude_desktop_config.json file.

Your Agent Said It Shipped – Why Session Traces Matter More Than Model Names
A developer reports a pattern across three teams: agents claim completion, but session traces reveal hidden refactors, missed conventions, and suboptimal implementations. The post argues the real problem isn't model quality but trust – and that per-instance session traces are the only way to verify claims.

Zot: A Lightweight Terminal Coding Agent Now Supports Claude Opus 4.8
Zot is a minimal terminal coding agent distributed as a single static Go binary with no runtime or Docker dependencies. It now supports Claude Opus 4.8 along with dozens of other models.

Claude Code hooks prevent Chrome tab interference between multiple sessions
A developer created three hooks (session-start, capture-tab-id, enforce-tab-id) that pin each Claude Code session to its own Chrome tab, preventing sessions from accidentally accessing other sessions' tabs during test runs and form fills.