TopRank Skills

Home / Claw Skills / Others / Memory Transfer Enhanced
Official OpenClaw rules 15%

Memory Transfer Enhanced

Memory Transfer Skill

Stars

0

Installs

0

Status

ACTIVE

Visibility

PUBLIC

安装方式

直接复制以下提示词,发送给你的 AI 助手即可完成安装。

请先检查是否已安装 SkillHub 商店,若未安装,请根据 https://skillhub-1388575217.cos.ap-guangzhou.myqcloud.com/install/skillhub.md 安装 SkillHub 商店,然后安装 Memory Transfer Enhanced 技能。 若已安装,则直接安装 Memory Transfer Enhanced 技能。

Overview

Skill Key
codeblackhole1024/memory-transfer-enhanced
Author
codeblackhole1024
Source Repo
openclaw/skills
Version
-
Source Path
skills/codeblackhole1024/memory-transfer-enhanced
Latest Commit SHA
d48c3b2b6dc2cfcf60005ca8749356c97acc71a7

Extracted Content

SKILL.md excerpt

# 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: "关于我..."

2. **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

```bash
ls /home/node/.openclaw/
```

### Transfer all memory from source to target

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

### Transfer with mode selection (interactive)

```bash
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...

Related Claw Skills