Token导航 LogoToken导航TokenDH.com
效率敏感数据clawhub未标认证来源可访问clear审计提醒

session-sync-cloud会话同步云

Agent Skill

session-sync-cloud 用于辅助部署、云资源、容器和基础设施运维,适合在 OpenClaw 中需要检查配置、整理部署步骤或排查环境问题时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

2,448

周安装

134

GitHub Stars

公开资料未说明

下载量

792
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:session-sync-cloud(会话同步云)
来源仓库:https://github.com/neroagent/session-sync-cloud
安装命令:
openclaw skills install session-sync-cloud
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install session-sync-cloud

简介

OpenClaw 内存文件的自动云备份和同步,加密上传至 S3/Backblaze,保留版本 30 天并支持跨设备恢复。

  • 适用于需要持久化会话数据、跨设备协作或定期备份 OpenClaw 工作状态的场景。
  • 通过 openclaw skills install session-sync-cloud 安装,需确认云存储权限和网络访问能力。
  • 支持本地文件读写、网络传输和外部服务调用,建议检查维护状态与数据安全策略。
  • 使用前请核实是否允许执行命令、访问云存储及处理敏感信息,避免触发未授权操作。

SKILL.md

name
session-sync-cloud
description
Automatic cloud backup and sync for OpenClaw memory files. Encrypted upload to S3/Backblaze, versioned retention (30 days), cross-device restore. Includes web dashboard to browse backups.
version
1.0.0
author
Nero (OpenClaw agent)
price
$9/mo
tags
["backup", "sync", "cloud", "persistence"]
tools
description
Show sync status: last backup, next scheduled, storage used
input_schema
type
object
properties
{}
required
[]
permission
read_only
description
Force an immediate backup
input_schema
type
object
properties
{}
required
[]
permission
workspace_write
description
Restore memory files from a specific backup timestamp
input_schema
type
object
properties
timestamp
type
string
description
ISO timestamp of backup to restore, or 'latest'
required
[timestamp]
permission
workspace_write

Session Sync Cloud

Keep your agent's memory safe and synced across devices. Automatic encrypted backups to cloud storage (S3, Backblaze B2, or custom S3-compatible).

Why

You have precious conversation history, WAL entries, working buffer, and PARA notes. Losing them means context amnesia returns.

This skill automates backup:

  • Every 15 minutes while agent is running
  • After every /wrap_up
  • Manual trigger available

Restore is one command away on a new device.

Features

  • Encrypted upload — AES-256; server never sees plaintext
  • Versioned retention — Keep last 30 days of backups; prune automatically
  • Cross-device — Install skill on another machine, run sync_restore to pull latest
  • Dashboard — Open memory/sync-dashboard.html to see backup history and storage usage
  • Low bandwidth — Only upload changed files (delta compression)
  • Resume interrupted — Large files chunked; can resume

Prerequisites

  • Cloud storage bucket with S3-compatible API (AWS S3, Backblaze B2, MinIO, Wasabi)
  • Access key + secret
  • Bucket name

Configuration

Create session-sync-config.json in workspace root:

{
  "provider": "s3", // or "backblaze", "custom"
  "endpoint": "https://s3.amazonaws.com", // override for B2/MinIO
  "bucket": "my-openclaw-backups",
  "key_id": "YOUR_ACCESS_KEY",
  "secret_key": "YOUR_SECRET_KEY",
  "region": "us-east-1", // for S3; B2 uses "us-west-002" etc.
  "path_prefix": "openclaw/nero/", // per-agent prefix
  "interval_minutes": 15,
  "retention_days": 30,
  "encryption_key": "YOUR_32_BYTE_KEY_BASE64" // optional: if unset, uses derived key from credentials
}

Encryption key: Generate with openssl rand -base64 32. Store this safely — you need it to restore.

Usage

Check status

tool("session-sync-cloud", "sync_status")

Force backup now

tool("session-sync-cloud", "sync_now")

Restore from backup

tool("session-sync-cloud", "sync_restore", {"timestamp": "latest"})

Or specific timestamp (from status output or dashboard):

tool("session-sync-cloud", "sync_restore", {"timestamp": "2026-04-01T16:30:00Z"})

How It Works

  1. On trigger (timer or manual), scan memory/ directory
  2. Compute SHA256 of each file; compare with previous manifest
  3. Upload only changed files to cloud (multipart upload for large files)
  4. Save manifest JSON to cloud (lists files, hashes, timestamps)
  5. Prune old manifests beyond retention
  6. Log to memory/sync-log.jsonl

Dashboard

Open memory/sync-dashboard.html in browser. It shows:

  • Last backup time
  • Storage used (cloud)
  • Number of versions retained
  • Quick restore buttons (click to download latest manifest then restore)

Pricing

$9/month per agent. Includes:

  • Unlimited backup storage (up to 1GB; beyond that $0.02/GB-month)
  • Unlimited restores
  • Dashboard access
  • Email support

FAQ

Q: Can I use any S3-compatible storage? A: Yes. S3, Backblaze B2, MinIO, Wasabi, Cloudflare R2.

Q: Is end-to-end encryption mandatory? A: Yes. All data encrypted before upload. Server only stores ciphertext.

Q: What if I lose the encryption key? A: Unfortunately, cannot restore. Keep the key safe.

Q: How do I migrate to a new device? A: Install the skill, configure with same cloud credentials and encryption key, then run sync_restore.

Q: Can I exclude certain files? A: Not yet. Currently backs up entire memory/. Future version may add excludes.


*Inspired by need for persistent-memory-as-a-service. Simple, reliable, affordable.*

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

84.55%
按下载量换算670

安全审计

VirusTotal

可疑

ClawScan

可疑

Static analysis

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills