This handles iOS 26's new AppMigrationKit APIs for moving user data from Android or other platforms during device setup. You build an app extension that exports files into an archive on the source device and imports them on the destination. The system orchestrates the transfer itself, you just package and unpack. Useful for onboarding flows where you want to import existing user content rather than starting fresh. It's beta API so expect changes before GM, but the extension model is straightforward: implement the export and import protocols, stream files through the archiver, check migration status on first launch. Beats building your own QR code or cloud based transfer flow.
npx skills add https://github.com/dpearson2699/swift-ios-skills --skill appmigrationkit