# Migrating from OpenClaw to Hermes Agent This guide covers how to import your OpenClaw settings, memories, skills, and API keys into Hermes Agent. ## Three Ways to Migrate ### 1. Automatic (during first-time setup) When you run `hermes setup` for the first time and Hermes detects `~/.openclaw`, it automatically offers to import your OpenClaw data before configuration begins. Just accept the prompt and everything is handled for you. ### 2. CLI Command (quick, scriptable) ```bash hermes claw migrate # Full migration with confirmation prompt hermes claw migrate --dry-run # Preview what would happen hermes claw migrate --preset user-data # Migrate without API keys/secrets hermes claw migrate --yes # Skip confirmation prompt ``` **All options:** | Flag | Description | |------|-------------| | `--source PATH` | Path to OpenClaw directory (default: `~/.openclaw`) | | `--dry-run` | Preview only — no files are modified | | `--preset {user-data,full}` | Migration preset (default: `full`). `user-data` excludes secrets | | `--overwrite` | Overwrite existing files (default: skip conflicts) | | `--migrate-secrets` | Include allowlisted secrets (auto-enabled with `full` preset) | | `--workspace-target PATH` | Copy workspace instructions (AGENTS.md) to this absolute path | | `--skill-conflict {skip,overwrite,rename}` | How to handle skill name conflicts (default: `skip`) | | `--yes`, `-y` | Skip confirmation prompts | ### 3. Agent-Guided (interactive, with previews) Ask the agent to run the migration for you: ``` > Migrate my OpenClaw setup to Hermes ``` The agent will use the `openclaw-migration` skill to: 1. Run a dry-run first to preview changes 2. Ask about conflict resolution (SOUL.md, skills, etc.) 3. Let you choose between `user-data` and `full` presets 4. Execute the migration with your choices 5. Print a detailed summary of what was migrated ## What Gets Migrated ### `user-data` preset | Item | Source | Destination | |------|--------|-------------| | SOUL.md | `~/.openclaw/workspace/SOUL.md` | `~/.hermes/SOUL.md` | | Memory entries | `~/.openclaw/workspace/MEMORY.md` | `~/.hermes/memories/MEMORY.md` | | User profile | `~/.openclaw/workspace/USER.md` | `~/.hermes/memories/USER.md` | | Skills | `~/.openclaw/workspace/skills/` | `~/.hermes/skills/openclaw-imports/` | | Command allowlist | `~/.openclaw/workspace/exec_approval_patterns.yaml` | Merged into `~/.hermes/config.yaml` | | Messaging settings | `~/.openclaw/config.yaml` (TELEGRAM_ALLOWED_USERS, MESSAGING_CWD) | `~/.hermes/.env` | | TTS assets | `~/.openclaw/workspace/tts/` | `~/.hermes/tts/` | ### `full` preset (adds to `user-data`) | Item | Source | Destination | |------|--------|-------------| | Telegram bot token | `~/.openclaw/config.yaml` | `~/.hermes/.env` | | OpenRouter API key | `~/.openclaw/.env` or config | `~/.hermes/.env` | | OpenAI API key | `~/.openclaw/.env` or config | `~/.hermes/.env` | | Anthropic API key | `~/.openclaw/.env` or config | `~/.hermes/.env` | | ElevenLabs API key | `~/.openclaw/.env` or config | `~/.hermes/.env` | Only these 6 allowlisted secrets are ever imported. Other credentials are skipped and reported. ## Conflict Handling By default, the migration **will not overwrite** existing Hermes data: - **SOUL.md** — skipped if one already exists in `~/.hermes/` - **Memory entries** — skipped if memories already exist (to avoid duplicates) - **Skills** — skipped if a skill with the same name already exists - **API keys** — skipped if the key is already set in `~/.hermes/.env` To overwrite conflicts, use `--overwrite`. The migration creates backups before overwriting. For skills, you can also use `--skill-conflict rename` to import conflicting skills under a new name (e.g., `skill-name-imported`). ## Migration Report Every migration (including dry runs) produces a report showing: - **Migrated items** — what was successfully imported - **Conflicts** — items skipped because they already exist - **Skipped items** — items not found in the source - **Errors** — items that failed to import For execute runs, the full report is saved to `~/.hermes/migration/openclaw//`. ## Troubleshooting ### "OpenClaw directory not found" The migration looks for `~/.openclaw` by default. If your OpenClaw is installed elsewhere, use `--source`: ```bash hermes claw migrate --source /path/to/.openclaw ``` ### "Migration script not found" The migration script ships with Hermes Agent. If you installed via pip (not git clone), the `optional-skills/` directory may not be present. Install the skill from the Skills Hub: ```bash hermes skills install openclaw-migration ``` ### Memory overflow If your OpenClaw MEMORY.md or USER.md exceeds Hermes' character limits, excess entries are exported to an overflow file in the migration report directory. You can manually review and add the most important ones.