Setting Up 11 AI Coding Tools on a New Machine in Under 5 Minutes
The average developer uses 2-4 AI coding tools. Setting all of them up on a new machine — with your personalized settings, rules, and preferences — takes hours. Here's how to do it in under 5 minutes.
The 2026 AI Tool Landscape
If you're a developer in 2026, you probably have several of these installed:
| Tool | Config Files | Location |
|---|---|---|
| ChatGPT | CHATGPT.md | Project root |
| Claude Code | CLAUDE.md, ~/.claude/ | Project + Home |
| Gemini CLI | GEMINI.md, ~/.gemini/ | Project + Home |
| Cursor | .cursorrules, settings.json | Project + App data |
| GitHub Copilot | .github/copilot-instructions.md | Project |
| OpenAI Codex | AGENTS.md, codex.md | Project + Home |
| Windsurf | .windsurfrules | Project + App data |
| Zed | .zed/settings.json | Project + App data |
| Cline | .clinerules | Project |
| Continue.dev | .continuerules | Project + Home |
| Aider | .aider.conf.yml | Project + Home |
That's 11 tools, each with their own config format and storage location. On a new machine, you'd need to manually find, copy, and place each file in the right location. On the right OS. With the right paths.
The Old Way: Hours of Manual Work
Setting up AI tools on a new machine traditionally looks like this:
- Install each tool individually
- Find your old config files (where did I put those?)
- Copy them from your old machine (if you still have access)
- Figure out the right paths on the new OS
- Test each tool to make sure your settings loaded
- Realize you forgot one tool's config and repeat
For 11 tools, this takes 1-3 hours. And you'll probably miss something.
The New Way: Two Commands
On your current machine (before you wipe it or stop using it):
npm install -g memoir-cli
memoir init # one-time setup
memoir push # backs up all 11 toolsOn your new machine:
npm install -g memoir-cli
memoir init # connect to same repo
memoir restore # everything is backThat's it. memoir automatically detects every installed AI tool, backs up their settings, and restores them to the right locations on any OS.
What memoir Detects Automatically
When you run memoir status, memoir scans your system and shows exactly what it found:
$ memoir status
memoir v2.5.0
Detected AI Tools:
✔ Claude Code ~/.claude/, 3 CLAUDE.md files
✔ Cursor .cursorrules in 5 projects
✔ ChatGPT CHATGPT.md in 2 projects
✔ GitHub Copilot .github/copilot-instructions.md
✔ Gemini CLI ~/.gemini/settings.json
✔ Aider ~/.aider.conf.yml
6 tools detected · 14 config filesIt finds configs in your home directory and scans project directories for per-project rules files.
Cross-Platform: Mac → Windows → Linux
memoir handles the hardest part of cross-device sync: path differences between operating systems.
- Mac: ~/Library/Application Support/Cursor/
- Windows: %APPDATA%\Cursor\
- Linux: ~/.config/Cursor/
You push from a Mac. You restore on Windows. memoir maps every path automatically. Your .cursorrules from /Users/alice/projects/myapp end up at C:\Users\alice\projects\myapp.
Session Handoff: Pick Up Where You Left Off
Beyond settings sync, memoir can capture your entire coding session:
# On your laptop (leaving for the day)
memoir snapshot
# On your desktop (next morning)
memoir resumeSnapshot captures git state, recent changes, and open file context. Resume injects this into your AI tool so it knows exactly where you left off.
The 5-Minute New Machine Checklist
- Install Node.js (if not already present)
- Install memoir:
npm install -g memoir-cli - Connect to your backup:
memoir init - Restore everything:
memoir restore - Verify:
memoir status
Install your AI tools themselves (Claude Code, Cursor, etc.) separately. memoir handles the configuration, not the installation.
Pro Tips
Use profiles for work vs personal
memoir profile create work
memoir push --profile workKeep your work AI configs separate from personal projects.
Back up to the cloud
memoir login
memoir cloud pushNo GitHub repo needed. Cloud sync includes version history so you can roll back.
Translate between tools
memoir migrate --from cursor --to claudeTrying a new tool? Bring your existing instructions with you.
Set up all your AI tools in one command.
memoir syncs 11 AI coding assistants across every device.
npm install -g memoir-cli