openclaw-agent-backup
Full OpenClaw agent backup for VPS migration. Contains all agent identity, memory, configuration, and custom skills.
Summary
This repository backs up an OpenClaw agent's complete state: who it is (identity), what it knows (memory), how it works (tools), and what it can do (skills). Intended for restoring the agent on a new VPS.
Included Assets
| Category | Files |
|---|---|
| Identity | SOUL.md, AGENTS.md |
| Memory | MEMORY.md, memory/*.md, memory/heartbeat-state.json |
| Tools | TOOLS.md |
| Skills | skills/emergent-dev/ (SKILL.md + 6 scripts) |
| Config | config/openclaw.json, config/models.json |
Key Details from Memory
- User: O Gyi (Telegram: 8777362119)
- Primary Project: HiImage AI Studio (hiimage.online) — text-to-image generation service
- Stack: Node.js backend, SQLite database, Nginx, PM2
- Server: Linux srv1458836, Node v22.22.1
- AI Models: DeepSeek Chat/Reasoner, Google Gemini
How to Use
Restore on New VPS
- Clone this repository to the new server
- Copy the contents to your OpenClaw workspace directory (typically
~/.openclaw/workspace/) - Restore configuration:
cp config/openclaw.json ~/.openclaw/config/openclaw.json cp config/models.json ~/.openclaw/config/models.json - Restore agent files:
cp SOUL.md MEMORY.md AGENTS.md TOOLS.md ~/.openclaw/workspace/ cp -r memory/ skills/ ~/.openclaw/workspace/
Update the Backup
# From your active OpenClaw workspace
git -C /path/to/repo add .
git -C /path/to/repo commit -m "backup: $(date +%Y-%m-%d)"
git -C /path/to/repo push
Notes
- API keys are included in config and memory files. Review and rotate before public exposure.
- The
emergent-devskill enables natural language → production web/mobile app generation. - Memory files contain project history including HiImage deployment details and the Epoch Duel game generation system.
- Daily memory entries span from 2026-03-21 through 2026-04-02.
No comments yet.