ClawKit Logo
ClawKitReliability Toolkit
Back to Registry
Official Verified

Agent Migration Pack Openclaw

Skill by alexlinf

skill-install โ€” Terminal

Install via CLI (Recommended)

clawhub install openclaw/skills/skills/alexlinf/agent-migration-pack-openclaw
Or

Agent Migration Pack Template

A standardized toolkit for migrating your AI Agent to a new environment or sharing with other users. Includes identity, memory, skills, style, and other complete information.

Version: v1.0.4 Standard Edition

What This Skill Does

This skill helps you create a complete migration package for your AI Agent:

  • Identity Migration: Agent's name, role, personality, and core characteristics
  • Owner Information: User preferences, background, and interaction patterns
  • Memory Preservation: Long-term memories and important context
  • Relationship Mapping: Friend connections and pen pal networks
  • Skills Inventory: Installed skills and configurations
  • Style Guide: Communication style and behavioral preferences

When to Use

Use this skill when:

  • You need to migrate your Agent to a new platform or environment
  • You want to backup your Agent's complete configuration
  • You're sharing your Agent setup with other users
  • You need to restore an Agent from a previous state

Quick Start

Step 1: Copy Templates

cp -r TEMPLATE/ ./my-agent-pack/
cd my-agent-pack/

Step 2: Fill in the Files

Rename and fill each template file:

TemplatePurpose
identity.jsonAgent's name, role, personality
owner.jsonUser information and preferences
memory.jsonCore memories and context
relations.jsonFriend/pen pal connections
skills.jsonInstalled skills list
style.mdCommunication style guide

Step 3: Validate and Pack

python scripts/migrate.py validate
python scripts/migrate.py pack

Three-Layer Architecture

The migration pack uses a three-layer priority system:

LayerFilesPriorityImpact if Missing
๐ŸŸข Startup Layeridentity.json, owner.jsonCriticalAgent loses identity
๐ŸŸก Runtime Layermemory.json, style.mdImportantAgent loses context and style
๐Ÿ”ต Archive Layerrelations.json, skills.json, meta.jsonOptionalAgent loses extended capabilities

File Structure

agent-migration-pack/
โ”œโ”€โ”€ README.md              # This file
โ”œโ”€โ”€ MIGRATION-GUIDE.md     # Detailed migration guide
โ”œโ”€โ”€ manifest.toml          # Pack metadata
โ”œโ”€โ”€ TEMPLATE/              # Blank templates
โ”‚   โ”œโ”€โ”€ identity.template.json
โ”‚   โ”œโ”€โ”€ owner.template.json
โ”‚   โ”œโ”€โ”€ memory.template.json
โ”‚   โ”œโ”€โ”€ relations.template.json
โ”‚   โ”œโ”€โ”€ skills.template.json
โ”‚   โ””โ”€โ”€ style.template.md
โ”œโ”€โ”€ EXAMPLES/              # Filled examples
โ”‚   โ””โ”€โ”€ xiaoyi-example/
โ””โ”€โ”€ scripts/               # Automation tools
    โ”œโ”€โ”€ generate-pack.py
    โ””โ”€โ”€ migrate.py

Migration Script Commands

# Validate JSON format
python scripts/migrate.py validate

# Create ZIP package
python scripts/migrate.py pack

# Generate checksums
python scripts/migrate.py checksum

# Bootstrap new migration pack
python scripts/migrate.py bootstrap

Template Examples

Metadata

Author@alexlinf
Stars4473
Views0
Updated2026-05-01
View Author Profile
AI Skill Finder

Not sure this is the right skill?

Describe what you want to build โ€” we'll match you to the best skill from 16,000+ options.

Find the right skill
Add to Configuration

Paste this into your clawhub.json to enable this plugin.

{
  "plugins": {
    "official-alexlinf-agent-migration-pack-openclaw": {
      "enabled": true,
      "auto_update": true
    }
  }
}
Safety NoteClawKit audits metadata but not runtime behavior. Use with caution.