How to Migrate OpenClaw and Hermes Between Machines Using SSH Self-Migration

A Reddit user reports successfully transferring both Hermes and OpenClaw from a WSL2 Ubuntu laptop to an EVO-X2 running WSL2 Ubuntu 2604. The key insight: they instructed both tools to SSH into the new machine, plan their own migration, execute it, and verify.
How the Migration Worked
- Self-driven migration: The user asked both Hermes and OpenClaw to SSH into the new EVO-X2 instance, figure out how to migrate themselves, plan, migrate, and verify.
- Minimal intervention: As long as the tools stuck to the plan, they completed the transfer with almost no engineer guidance.
Key Observations
- Platform: Source machine: WSL2 Ubuntu laptop. Destination: EVO-X2 WSL2 Ubuntu 2604 instance.
- Autonomy: The AI coding agents were capable of performing the entire migration autonomously after receiving high-level instructions.
📖 Read the full source: r/openclaw
👀 See Also

Open-source launch playbook for OSS LLM and local AI projects
An open-source playbook addresses discoverability issues for LLM and local AI projects by providing structured guidance on pre-launch preparation, launch-day execution, and post-launch follow-up. It includes templates and strategies for community distribution, creator outreach, and SEO optimization.

Components of a Coding Agent: How Tools, Memory, and Context Extend LLMs
Sebastian Raschka breaks down the six building blocks of coding agents like Claude Code and Codex CLI, explaining how agent harnesses combine models with tools, memory, and repository context to make LLMs more effective for software work.

Structuring Claude Code Agents with CLAUDE.md and .claude/ Directory Patterns
A developer shares their approach to running multiple AI agents using Claude Code, with each agent having its own directory containing a CLAUDE.md file and a .claude/ directory with rules and skills. The key insight is separating always-on context from on-demand workflows to optimize token usage and response quality.

Making an MCP Server Install Itself: Three Hosts, Three Mechanisms, Gotchas
A deep dive into programmatically installing MCP servers across VS Code, Cursor, and Claude Code — covering APIs, file writes, and edge cases like malformed JSON, atomic writes, and idempotent updates.