import type { Migration } from "../types.js"; /** * v0.2.0 → v0.2.1 — no data migration. * * 0.2.1 adds `add org`, `add repo`, `sync` commands and makes `/repositories/` * the canonical home for repos. Existing 0.2.0 workspaces keep working; this * step pre-creates the `repositories/` folder for every org (so the first `sync` * run is instant) and stamps workspace.yaml with the new version so the * startup banner stops firing. * * Legacy .git at org root is *not* touched here — that cleanup is opt-in via * `solosquad sync`. */ export declare const migration: Migration;