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

memory-transfer-enhanced记忆传输增强

Agent Skill

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

总安装

7,980

周安装

326

GitHub Stars

公开资料未说明

下载量

2,556
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install memory-transfer-enhanced

简介

通过可选的主题过滤在 OpenClaw 代理之间传输内存,支持具有角色转换的共享模式或逐字副本的克隆模式。

SKILL.md

name
memory-transfer
description
Transfer memory files between OpenClaw agents with support for topic-specific transfers and two modes: memory sharing (with role transformation) and memory cloning (verbatim copy). Use when: (1) Migrating memory from main agent to sub-agent, (2) Sharing specific topic memories between agents, (3) Copying user preferences to new agents, (4) Backing up agent memory before resets.
metadata

Memory Transfer Skill

Transfer memory files and context between OpenClaw agents with advanced filtering and transformation options.

Core Features

  1. Topic-Specific Transfer - Transfer only memories related to a specific topic/keyword
  2. Memory Sharing - Share memories with role/perspective transformation (I → you, my → your)
  3. Memory Cloning - Clone memories verbatim without any transformation

Mode Differences

Memory Sharing (share mode)

Best for knowledge/context transfer between agents

This mode:

  1. Filters out user information - Removes personal data about the user:

- User names: "我叫小明", "我的名字是..." - User preferences: "我喜欢...", "我讨厌..." - User personal info: email, phone, address, birthday - About user: "关于我..."

  1. Transforms to target agent's identity - Converts references to match the target agent:

- "I am Agent Main" → "I am Agent Skill Master" (adopts target identity) - "Agent Main's workspace" → "Agent Skill Master's workspace" - "I work as a helper" → "I work as Agent Skill Master" - First-person pronouns (I, my, me) remain as first-person

Use when: Sharing project knowledge, workflows, or task context. The target agent adopts the knowledge as their own experience.

Memory Cloning (clone mode)

Copies memory exactly as-is without filtering or transformation:

  • All content preserved verbatim
  • User information remains
  • Original context maintained

Use when: Full backup/migration or preserving original author's voice.

Commands

List available agents

ls /home/node/.openclaw/

Transfer all memory from source to target

node memory-transfer.js transfer <source-agent-id> <target-agent-id>

Transfer with mode selection (interactive)

node memory-transfer.js transfer <source> <target> --mode interactive

This will prompt for:

  1. Topic filter (optional - press Enter to transfer all)
  2. Mode selection: share or clone
  3. Confirmation before proceeding

Transfer specific topic memory

node memory-transfer.js transfer <source> <target> --topic "claude"

Force memory sharing (with transformation)

node memory-transfer.js transfer <source> <target> --mode share

Force memory cloning (verbatim)

node memory-transfer.js transfer <source> <target> --mode clone

Preview transfer (dry run)

node memory-transfer.js transfer <source> <target> --dry-run

List agent memories

node memory-transfer.js list <agent-id>

Search memories by topic

node memory-transfer.js search <agent-id> <topic>

Interactive Workflow

When running without explicit flags, the skill will:

  1. Prompt for source agent - Select which agent's memory to transfer
  2. Prompt for target agent - Select destination agent
  3. Prompt for topic (optional) - Enter keyword to filter, or press Enter for all
  4. Prompt for mode - Choose:

- share - Filter user info + transform pronouns (recommended for knowledge sharing) - clone - Keep original verbatim (for backup)

  1. Show preview - Display what will be transferred
  2. Confirm - Require explicit confirmation before executing
  3. Execute or cancel - Proceed or abort based on user decision

Examples

Transfer all memories as sharing (with transformation)

node memory-transfer.js transfer main coder --mode share

Transfer specific date memory as clone

node memory-transfer.js transfer main coder 2026-03-01.md --mode clone

Transfer topic-filtered memory with preview

node memory-transfer.js transfer main coder --topic "preferences" --dry-run

Interactive mode (recommended for first-time use)

node memory-transfer.js transfer main coder --mode interactive

Target Agent Adaptation Rules

When using share mode, the memory is transformed to match the target agent's identity:

Agent Identity

SourceTarget
IAgent Main (source agent name)
meAgent Main
myAgent Main's
I boughtAgent Main bought
I thinkAgent Main thinks

Role Statements

Source PatternTarget
I work as helperAgent Skill Master works as helper
I serve asAgent Skill Master serves as

Result example: "I bought a phone" → "Agent Main bought a phone"

This way the target agent knows this is the source agent's experience, not their own.

SourceTarget
I thinkyou think
I believeyou believe
I knowyou know
I understandyou understand
I rememberyou remember
I preferyou prefer
I likeyou like
I wantyou want
I needyou need

Important: The transformation converts both pronouns AND role descriptions so the target agent doesn't inherit confused identity. For example:

  • "I am Agent Skill Master" → "you are Agent Skill Master"
  • "My role is to create skills" → "your role is to create skills"
  • "I was created to help you" → "you were created to help me"

Agent Workspaces

OpenClaw agent workspaces are typically at:

  • /home/node/.openclaw/workspace-<agent-id>/
  • Main agent: /home/node/.openclaw/workspace-main/

Memory files:

  • MEMORY.md - Long-term memory
  • memory/YYYY-MM-DD.md - Daily memories
  • memory/*.md - Topic-specific memories

Safety Features

  1. Dry-run by default - Preview before executing
  2. Explicit confirmation - Never auto-execute without approval
  3. Backup option - Can create backup before overwriting
  4. Mode clarification - Always ask to confirm share vs clone mode

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

93.25%
按下载量换算2,383

安全审计

VirusTotal

通过

ClawScan

可疑

Static analysis

通过

权限和风险

只读

该 Skill 主要提供规则、说明或参考内容,本身偏只读;真正读写文件、联网或执行命令仍取决于宿主 Agent 的任务。

安装前确认

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

来源信息

继续浏览同类 Skills