sdk/examples/plugins/agents-squad/skills/migration.md
When planning or executing a migration (database schema, data transformation, config format, or API version), follow this process:
Expand-Contract (preferred for zero-downtime):
Blue-Green: Run old and new versions in parallel, switch traffic.
Big Bang: Take the system offline, migrate, bring it back. Only for small datasets or when downtime is acceptable.
Every migration must have a rollback plan before execution:
up and down functions.Document: