โ† All skills
Tencent SkillHub ยท Productivity

Backup To Telnyx Storage

Backup and restore your OpenClaw workspace to Telnyx Storage. Simple CLI-based scripts with no external dependencies.

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

Backup and restore your OpenClaw workspace to Telnyx Storage. Simple CLI-based scripts with no external dependencies.

โฌ‡ 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, backup.py, backup.sh, list.sh, restore.sh

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

Backup to Telnyx Storage

Backup and restore your OpenClaw workspace to Telnyx Storage (S3-compatible).

Setup (One-Time)

# 1. Install Telnyx CLI (if not already) npm install -g @telnyx/api-cli # 2. Authenticate telnyx auth setup That's it. No boto3, no AWS credentials, no environment variables.

Backup

./backup.sh # Output: # ๐Ÿ”„ OpenClaw Backup โ†’ Telnyx Storage # ======================================== # Creating archive: openclaw-backup-20260201-120000.tar.gz # + MEMORY.md # + SOUL.md # + memory/ # โœ… Backup complete: openclaw-backup/openclaw-backup-20260201-120000.tar.gz Custom bucket and workspace: ./backup.sh my-bucket ~/my-workspace Control backup retention (default: 48, ~24h of 30-min backups): MAX_BACKUPS=100 ./backup.sh

List Backups

./list.sh # Output: # ๐Ÿ“‹ Available Backups # ======================================== # Bucket: openclaw-backup # # โ€ข openclaw-backup-20260201-120000.tar.gz 1.2M 2/1/2026 # โ€ข openclaw-backup-20260131-180000.tar.gz 1.1M 1/31/2026

Restore

# Restore latest backup ./restore.sh latest # Restore specific backup ./restore.sh openclaw-backup-20260201-120000.tar.gz # Restore to different location ./restore.sh latest my-bucket ~/restored-workspace

What Gets Backed Up

AGENTS.md, SOUL.md, USER.md, IDENTITY.md, TOOLS.md MEMORY.md, HEARTBEAT.md, GUARDRAILS.md memory/, knowledge/, scripts/

Scheduling

Automatic backups every 30 minutes: crontab -e # Add: */30 * * * * ~/skills/backup-to-telnyx-storage/backup.sh >> /tmp/backup.log 2>&1

Pricing

Telnyx Storage: $0.023/GB/month โ€” typical workspace costs pennies.

Legacy Python Script

The original backup.py using boto3 is still available if you need AWS SDK compatibility: pip install boto3 export TELNYX_API_KEY=KEYxxxxx python3 backup.py Note: The CLI-based scripts (backup.sh, list.sh, restore.sh) are recommended as they require no additional dependencies and provide full backup/list/restore functionality.

Category context

Workflow acceleration for inboxes, docs, calendars, planning, and execution loops.

Source: Tencent SkillHub

Largest current source with strong distribution and engagement signals.

Package contents

Included in package
4 Scripts1 Docs
  • SKILL.md Primary doc
  • backup.py Scripts
  • backup.sh Scripts
  • list.sh Scripts
  • restore.sh Scripts