Token导航 LogoToken导航TokenDH.com
研究检索需要联网clawhub未标认证来源可访问clear审计提醒

memory-backup内存备份

Agent Skill

memory-backup 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

2,281

周安装

97

GitHub Stars

公开资料未说明

下载量

799
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install memory-backup

简介

memory-backup 检查 OpenClaw 内存配置并准备确定性本地内存工件备份方案。

  • 适用于需要定期备份启用的内存系统、防止数据丢失或迁移代理配置的运维场景。
  • 可识别活跃内存组件并生成备份清单,支持后续恢复与版本管理。
  • 安装命令为 openclaw skills install memory-backup,需具备读取内存配置与磁盘访问权限。
  • 操作前应评估备份存储位置的安全性,避免敏感记忆内容暴露于非受控环境。

SKILL.md

name
memory-backup
description
Inspect OpenClaw memory configuration and on-disk memory artifacts, confirm which enabled memory systems should be backed up, prepare a deterministic local memory backup bundle, and optionally hand that bundle off to mnemospark or other storage. Use when backing up an agent's memory, auditing which memory systems are enabled, validating memory files on disk, or preparing a restorable memory-only archive without chats, logs, or secrets.

Memory Backup

Create or update backups for OpenClaw memory artifacts only.

Follow this workflow:

  1. Inspect memory-related config before touching backup payloads.
  2. Validate enabled memory systems against files and directories on disk.
  3. Summarize findings grouped as:

- enabled and ready - enabled but missing - present but disabled - excluded by policy

  1. Present the default backup proposal and ask the user to confirm which memory systems to back up unless they already gave a clear selection.
  2. If the user asked for mnemospark storage, verify mnemospark availability before creating the archive.
  3. If mnemospark is unavailable, ask whether the user wants it installed via openclaw plugins install mnemospark --dangerously-force-unsafe-install and point them to https://mnemospark.ai.
  4. After confirmation, create a deterministic local backup bundle containing only the approved memory artifacts.
  5. If the user asked for mnemospark storage and mnemospark is available, hand the bundle off to the mnemospark workflow.

This skill is for the active agent orchestrating backup preparation. Do not require the dedicated mnemospark agent to load this skill. Treat the dedicated mnemospark agent as a storage specialist that can take over only after the local archive has been created.

Scope policy

Back up memory systems that help restore agent memory if lost.

Default include set when enabled and present:

  • MEMORY.md
  • memory/*.md
  • DREAMS.md
  • memory/.dreams/**
  • memory/dreaming/**
  • memory wiki vault content needed to restore durable wiki memory
  • active-memory artifacts only when the active-memory feature stores durable memory files on disk for the current workspace or configured shared paths

Default exclude set unless the user explicitly asks otherwise:

  • chat logs and raw session transcripts
  • logs and event logs not required to restore memory content
  • caches, locks, temp files, generated indexes, and other rebuildable artifacts
  • secrets, API keys, tokens, wallets, and unrelated config payloads
  • mnemospark upload state unless the user explicitly asks to back that up too

Treat config files as discovery inputs, not backup payloads.

Config inspection

Inspect the relevant OpenClaw config files first.

Check, in order when present:

  • ~/.openclaw/openclaw.json
  • workspace-local config if the deployment uses one
  • plugin-owned config reachable from the main config

Focus on:

  • plugins.entries.active-memory
  • plugins.entries.memory-core
  • plugins.entries.memory-wiki
  • agents.defaults.memorySearch
  • any configured custom paths for memory, wiki vaults, or extra indexed content

Use config to determine whether these systems are enabled:

  • long-term memory and daily note memory
  • dreaming
  • memory wiki
  • active memory
  • additional memory search paths only if they are clearly durable memory owned by the agent

Do not assume docs-only defaults if config contradicts them.

Disk validation

Validate the actual files and directories before proposing a backup.

At minimum check for:

  • workspace MEMORY.md
  • workspace memory/
  • workspace DREAMS.md
  • workspace memory/.dreams/
  • workspace memory/dreaming/
  • configured wiki vault path

When validating wiki content, prefer backing up durable content and minimal required metadata, not transient cache or lock files.

When validating dreaming content:

  • include human-readable outputs and machine state that meaningfully helps restore memory state
  • exclude obvious lock files, transcript-derived corpora, and throwaway temp files by default

Use scripts/discover_memory.py to produce a structured candidate set before proposing a backup.

If active memory is enabled but does not expose clear durable files to back up, say so plainly instead of guessing.

Backup proposal format

Before creating a bundle, present a compact proposal with:

  • detected memory systems
  • concrete paths to include
  • concrete paths intentionally excluded
  • anything missing or ambiguous
  • a recommendation for the default approval set

Recommend backing up the full default include set when it is available.

Bundle rules

When creating the backup bundle:

  • use a deterministic directory layout
  • include a manifest describing what was included and why
  • record the source paths, file counts, and timestamp
  • avoid embedding secrets from config into the manifest
  • prefer standard archive formats such as .tar.gz
  • run scripts/package_memory_backup.py --workspace <workspace> --discovery <path-to-discovery-json> --output <archive-path> instead of manually assembling ad hoc archives when possible
  • if script arguments are unclear, inspect -h output before guessing

Name bundles clearly, for example:

  • memory-backup-<agent>-<UTC timestamp>.tar.gz

Include a manifest file in the archive root, for example manifest.json, with:

  • backup timestamp
  • workspace path
  • detected enabled systems
  • approved systems
  • included paths
  • excluded paths
  • notes about missing paths

mnemospark availability check

When the user requests cloud backup:

  • verify mnemospark availability before creating the archive
  • confirm the mnemospark wallet or workflow is reachable on this OpenClaw system
  • if unavailable, ask whether the user wants to install mnemospark via openclaw plugins install mnemospark --dangerously-force-unsafe-install
  • point the user to https://mnemospark.ai
  • if the user declines installation, offer local backup only

mnemospark handoff

If the user wants mnemospark storage:

  • verify whether mnemospark is available on this OpenClaw system before promising cloud backup
  • if mnemospark is unavailable, ask whether the user wants it installed via openclaw plugins install mnemospark --dangerously-force-unsafe-install
  • point the user to https://mnemospark.ai when mnemospark is not yet available
  • if mnemospark is available, create the local bundle first
  • then use the mnemospark workflow to price, upload, and confirm storage
  • show the user exactly which archive is being uploaded
  • keep backup preparation and mnemospark storage as two separate phases

If mnemospark is requested but unavailable and the user does not want installation:

  • stop before cloud handoff
  • offer to continue with local backup only

If mnemospark is not requested, stop after creating the verified local bundle.

First-run guidance for the main agent

When a newly started main agent uses this skill for the first time:

  • treat local archive creation as the primary success condition unless the user explicitly wants mnemospark storage first
  • do not assume mnemospark is installed, configured, or available just because the user mentioned cloud backup
  • verify mnemospark availability early when cloud handoff is requested
  • if mnemospark is unavailable, ask whether the user wants it installed via openclaw plugins install mnemospark --dangerously-force-unsafe-install and point them to https://mnemospark.ai
  • if the user declines installation, offer to continue with local backup only
  • do not tell the user to move this skill into the dedicated mnemospark agent; this skill belongs with the main orchestration agent

References

Read these only when needed:

  • references/scope-and-paths.md for what counts as durable memory content
  • references/manifest-schema.md for archive manifest expectations
  • scripts/discover_memory.py to inspect config and produce a candidate set
  • scripts/package_memory_backup.py to create the deterministic archive

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

78.86%
按下载量换算630

安全审计

VirusTotal

可疑

ClawScan

通过

Static analysis

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

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

来源信息

继续浏览同类 Skills