繁體中文 | English
AI Assistant migration and template sharing service.
Try it now: https://loader.land
- Upload backup files with a 6-character verification code
- Download backups on your new machine
- Auto-delete after 24 hours (files + records)
- Password-protected zip files
- Share CLAUDE.md or AGENTS.md templates
- Simple 6-character code for sharing
- 7-day expiry for templates
- Download count tracking
Tell Claude Code:
幫我用 loader.land 搬家
or
Help me migrate using loader.land
Claude Code will read the API documentation and guide you through the process.
| Tool | Config File | Migration | Template |
|---|---|---|---|
| Claude Code | CLAUDE.md | ✅ | ✅ |
| OpenAI Codex | AGENTS.md | ✅ | ✅ |
| GitHub Copilot | AGENTS.md | - | ✅ |
| Cursor | .cursorrules | - | ✅ |
| OpenClaw (Moltbot) | ~/.openclaw/ | ✅ | - |
| Endpoint | Method | Description |
|---|---|---|
/ |
GET | API documentation (for AI to read) |
/upload |
POST | Upload backup, returns code |
/download/{code} |
GET | Download backup |
/templates |
POST | Share template, returns code |
/templates/{code} |
GET | Get template (JSON) |
/templates/{code}/raw |
GET | Get raw markdown |
- Python 3.12+
- uv package manager
git clone https://github.com/wcAmon/cloud-mover.git
cd cloud-mover
uv syncCreate a .env file:
HOST=0.0.0.0
PORT=8080
BASE_URL=https://your-domain.com
UPLOAD_DIR=./uploads
DATA_DIR=./data
MAX_FILE_SIZE_MB=59
EXPIRY_HOURS=24
TEMPLATE_EXPIRY_DAYS=7
MAX_TEMPLATE_SIZE_KB=100uv run cloud-mover[Unit]
Description=Cloud-Mover API
After=network-online.target
[Service]
Type=simple
User=your-user
WorkingDirectory=/path/to/cloud-mover
EnvironmentFile=/path/to/cloud-mover/.env
ExecStart=/home/your-user/.local/bin/uv run cloud-mover
Restart=on-failure
RestartSec=10
[Install]
WantedBy=multi-user.targetyour-domain.com {
reverse_proxy localhost:8080
}
- Server does NOT store zip passwords - only users know them
- Complete deletion after expiry - no records retained
- Verification codes only identify files - cannot decrypt contents
- Templates are public (no password) but expire after 7 days
# Install dev dependencies
uv sync --group dev
# Run tests
uv run pytest
# Run with auto-reload (development)
uv run uvicorn cloud_mover.main:app --reloadMIT