/appmigrationkit
Transfer app data to or from other platforms using AppMigrationKit. Use when implementing system-orchestrated one-time migration between iOS and Android or another platform, building an AppMigrationExtension, packaging transportable resources with ResourcesArchiver, importing
$ npx -y skills add dpearson2699/swift-ios-skills --skill appmigrationkit --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
- Fires itselfAuto-invocation. Claude auto-loads it when your prompt matches the work.Auto-invocation is when the right skill fires by itself at the right moment, driven by a FLOW.md router and a hook, instead of you invoking it by name. It is the difference between a skill being installed and a skill actually getting used.Read the full definition →
- You can call itInvoke it directly when you want it.
- Slash command
/appmigrationkit
Context preview
The summary Claude sees to decide when to auto-load this skill.
Transfer app data to or from other platforms using AppMigrationKit. Use when implementing system-orchestrated one-time migration between iOS and Android or another platform, building an AppMigrationExtension, packaging transportable resources with ResourcesArchiver, importing
SKILL.md
appmigrationkit.SKILL.mdname: appmigrationkit
description: "Transfer app data to or from other platforms using AppMigrationKit. Use when implementing system-orchestrated one-time migration between iOS and Android or another platform, building an AppMigrationExtension, packaging transportable resources with ResourcesArchiver, importing resources on the destination device, reporting import progress, handling migration errors and app group cleanup, checking MigrationStatus, or testing migration code with AppMigrationTester."
AppMigrationKit
One-time cross-platform data transfer for app resources. Enables apps to export data to or import data from another platform (for example, Android) during device setup or onboarding. AppMigrationKit APIs are iOS 26.0+ / iPadOS 26.0+; the data-container entitlement is iOS 26.1+ / iPadOS 26.1+ / Mac Catalyst 26.1+. Swift 6.3.
> **Beta-sensitive.** AppMigrationKit is new in iOS 26 and may change before GM. > Re-check current Apple documentation before relying on specific API details.
AppMigrationKit uses an app extension model. The system orchestrates the transfer between devices. The app provides an extension conforming to export and import protocols, and the system calls that extension at the appropriate time. The app itself never manages the network connection between devices.
Contents
- [Architecture Overview](#architecture-overview)
- [Setup and Entitlements](#setup-and-entitlements)
- [App Migration Extension](#app-migration-extension)
- [Exporting Resources](#exporting-resources)
- [Importing Resources](#importing-resources)
- [Migration Status](#migration-status)
- [Progress Tracking](#progress-tracking)
- [Testing](#testing)
- [Common Mistakes](#common-mistakes)
- [Review Checklist](#review-checklist)
- [References](#references)
Architecture Overview
AppMigrationKit operates through three layers:
1. **App extension** -- An `AppMigrationExtension` conforming type that the system invokes during migration. It handles data export and import. 2. **System orchestration** -- The OS manages the device-to-device session, transport, and scheduling. The extension does not control when it runs. 3. **Containing app** -- After migration completes, the app checks `MigrationStatus.importStatus` on first launch to determine whether migration occurred and whether it succeeded.
Key types:
| Type | Role | |---|---| | `AppMigrationExtension` | Protocol for the app extension entry point | | `ResourcesExportingWithOptions` | Protocol for exporting files via archiver | | `ResourcesExporting` | Simplified export protocol (no custom options) | | `ResourcesImporting` | Protocol for importing files on the destination | | `ResourcesArchiver` | Streams files into the export archive | | `MigrationDataContainer` | Access to the containing app's data directories | | `MigrationStatus` | Check import result from the containing app | | `MigrationPlatform` | Identifies the other device's platform (e.g., `.android`) | | `MigrationAppIdentifier` | Identifies the source app by store and bundle ID | | `AppMigrationTester` | Test-only actor for validating export/import logic |
Setup and Entitlements
Entitlement
The app extension requires the `com.apple.developer.app-migration.data-container-access` entitlement. Its value is a single-element string array containing the bundle identifier of the containing app:
<key>com.apple.developer.app-migration.data-container-access</key>
<array>
<string>com.example.myapp</string>
</array>No other values are valid. This entitlement grants the extension read access to the containing app's data container during export and write access during import. The entitlement itself is available on iOS 26.1+, iPadOS 26.1+, and Mac Catalyst 26.1+, even though the core AppMigrationKit APIs are available on iOS 26.0+ and iPadOS 26.0+.
Extension Target
Add a new App Extension target to the Xcode project. The extension conforms to one or more of the migration protocols (`ResourcesExportingWithOptions`, `ResourcesExporting`, `ResourcesImporting`).
App Migration Extension
The extension entry point conforms to `AppMigrationExtension`. During migration, the system prevents launching the containing app and its other extensions to ensure exclusive data access.
Accessing the Data Container
The extension accesses the containing app's files through `appContainer`:
import AppMigrationKit
struct MyMigrationExtension: ResourcesExporting {
var resourcesSizeEstimate: Int { estimateTotalExportSize() }
var resourcesVersion: String { "1.0" }
var resourcesCompressible: Bool { true }
func exportResources(
to archiver: sending ResourcesArchiver,
request: MigrationRequest
) async throws {
let container = appContainer
// container.bundleIdentifier -- app's bundle ID
// container.containerRootDirectory -- root of the app container
// container.documentsDirectory -- Documents/
// container.applicationSupportDirectory -- Application Support/
}
}`MigrationDataContainer` provides `containerRootDirectory`, `documentsDirectory`, and `applicationSupportDirectory` as `URL` values pointing into the containing app's sandbox.
Exporting Resources
Conform to `ResourcesExportingWithOptions` (or `ResourcesExporting` for no custom options) to package files for transfer. The system calls `exportResources(to:request:)` with a `ResourcesArchiver` and a `MigrationRequestWithOptions`.
Declaring Export Properties
struct MyMigrationExtension: ResourcesExportingWithOptions {
typealias OptionsType = MigrationDefaultSupportedOptions
var resourcesSizeEstimate: Int {
// Return estimated total bytes of exported data
calculateExportSize()
}
var resourcesVersion: String {
"1.0"
}
var resourcesCompressible: Bool {
true // Let the system compress during transport
}
}- `resour
Read more
name: appmigrationkit description: "Transfer app data to or from other platforms using AppMigrationKit. Use when implementing system-orchestrated one-time migration between iOS and Android or another platform, building an AppMigrationExtension, packaging transportable resources with ResourcesArchiver, importing resources on the destination device, reporting import progress, handling migration errors and app group cleanup, checking MigrationStatus, or testing migration code with AppMigrationTester."
AppMigrationKit
One-time cross-platform data transfer for app resources. Enables apps to export data to or import data from another platform (for example, Android) during device setup or onboarding. AppMigrationKit APIs are iOS 26.0+ / iPadOS 26.0+; the data-container entitlement is iOS 26.1+ / iPadOS 26.1+ / Mac Catalyst 26.1+. Swift 6.3.
> **Beta-sensitive.** AppMigrationKit is new in iOS 26 and may change before GM. > Re-check current Apple documentation before relying on specific API details.
AppMigrationKit uses an app extension model. The system orchestrates the transfer between devices. The app provides an extension conforming to export and import protocols, and the system calls that extension at the appropriate time. The app itself never manages the network connection between devices.
Contents
- [Architecture Overview](#architecture-overview)
- [Setup and Entitlements](#setup-and-entitlements)
- [App Migration Extension](#app-migration-extension)
- [Exporting Resources](#exporting-resources)
- [Importing Resources](#importing-resources)
- [Migration Status](#migration-status)
- [Progress Tracking](#progress-tracking)
- [Testing](#testing)
- [Common Mistakes](#common-mistakes)
- [Review Checklist](#review-checklist)
- [References](#references)
Architecture Overview
AppMigrationKit operates through three layers:
1. **App extension** -- An `AppMigrationExtension` conforming type that the system invokes during migration. It handles data export and import. 2. **System orchestration** -- The OS manages the device-to-device session, transport, and scheduling. The extension does not control when it runs. 3. **Containing app** -- After migration completes, the app checks `MigrationStatus.importStatus` on first launch to determine whether migration occurred and whether it succeeded.
Key types:
| Type | Role | |---|---| | `AppMigrationExtension` | Protocol for the app extension entry point | | `ResourcesExportingWithOptions` | Protocol for exporting files via archiver | | `ResourcesExporting` | Simplified export protocol (no custom options) | | `ResourcesImporting` | Protocol for importing files on the destination | | `ResourcesArchiver` | Streams files into the export archive | | `MigrationDataContainer` | Access to the containing app's data directories | | `MigrationStatus` | Check import result from the containing app | | `MigrationPlatform` | Identifies the other device's platform (e.g., `.android`) | | `MigrationAppIdentifier` | Identifies the source app by store and bundle ID | | `AppMigrationTester` | Test-only actor for validating export/import logic |
Setup and Entitlements
Entitlement
The app extension requires the `com.apple.developer.app-migration.data-container-access` entitlement. Its value is a single-element string array containing the bundle identifier of the containing app:
<key>com.apple.developer.app-migration.data-container-access</key>
<array>
<string>com.example.myapp</string>
</array>No other values are valid. This entitlement grants the extension read access to the containing app's data container during export and write access during import. The entitlement itself is available on iOS 26.1+, iPadOS 26.1+, and Mac Catalyst 26.1+, even though the core AppMigrationKit APIs are available on iOS 26.0+ and iPadOS 26.0+.
Extension Target
Add a new App Extension target to the Xcode project. The extension conforms to one or more of the migration protocols (`ResourcesExportingWithOptions`, `ResourcesExporting`, `ResourcesImporting`).
App Migration Extension
The extension entry point conforms to `AppMigrationExtension`. During migration, the system prevents launching the containing app and its other extensions to ensure exclusive data access.
Accessing the Data Container
The extension accesses the containing app's files through `appContainer`:
import AppMigrationKit
struct MyMigrationExtension: ResourcesExporting {
var resourcesSizeEstimate: Int { estimateTotalExportSize() }
var resourcesVersion: String { "1.0" }
var resourcesCompressible: Bool { true }
func exportResources(
to archiver: sending ResourcesArchiver,
request: MigrationRequest
) async throws {
let container = appContainer
// container.bundleIdentifier -- app's bundle ID
// container.containerRootDirectory -- root of the app container
// container.documentsDirectory -- Documents/
// container.applicationSupportDirectory -- Application Support/
}
}`MigrationDataContainer` provides `containerRootDirectory`, `documentsDirectory`, and `applicationSupportDirectory` as `URL` values pointing into the containing app's sandbox.
Exporting Resources
Conform to `ResourcesExportingWithOptions` (or `ResourcesExporting` for no custom options) to package files for transfer. The system calls `exportResources(to:request:)` with a `ResourcesArchiver` and a `MigrationRequestWithOptions`.
Declaring Export Properties
struct MyMigrationExtension: ResourcesExportingWithOptions {
typealias OptionsType = MigrationDefaultSupportedOptions
var resourcesSizeEstimate: Int {
// Return estimated total bytes of exported data
calculateExportSize()
}
var resourcesVersion: String {
"1.0"
}
var resourcesCompressible: Bool {
true // Let the system compress during transport
}
}- `resour
86 agent skills optimized for iOS 26+ development with Swift 6.3 and modern Apple frameworks.
Repo: dpearson2699/swift-ios-skills
Other skills on swift-ios-skills.
- /accessorysetupkit
Discover and configure Bluetooth and Wi-Fi accessories using AccessorySetupKit. Use when presenting a privacy-preserving accessory picker, defining discovery descriptors for BLE or Wi-Fi devices, handling accessory session events, migrating from CoreBluetooth permission-based
Open skill - /activitykit
Implement, review, or improve Live Activities and Dynamic Island experiences in iOS apps using ActivityKit. Use when building real-time updating widgets for the Lock Screen and Dynamic Island — delivery tracking, sports scores, ride-sharing status, workout timers, media
Open skill - /adattributionkit
Measure ad effectiveness with privacy-preserving attribution using AdAttributionKit. Use when registering ad impressions, handling attribution postbacks, updating conversion values, implementing re-engagement attribution, configuring publisher or advertiser apps, or replacing
Open skill - /alarmkit
Implement AlarmKit alarms and countdown timers for iOS and iPadOS with Lock Screen, Dynamic Island, StandBy, and paired Apple Watch system UI. Covers AlarmManager scheduling, AlarmAttributes and AlarmPresentation, system Stop and AlarmButton secondary actions, authorization,
Open skill - /app-clips
Build iOS App Clips with invocation URLs, App Clip Codes, NFC, QR codes, Safari banners, Maps, Messages, target setup, App Store Connect experiences, size/capability constraints, NSUserActivity routing, SKOverlay promotion, App Group/keychain handoff, ephemeral notifications,
Open skill - /app-intents
Implement App Intents for Siri, Shortcuts, Spotlight, widgets, Control Center, and Apple Intelligence on iOS. Covers AppIntent actions, AppEntity and EntityQuery models, AppShortcutsProvider phrases, IndexedEntity Spotlight indexing, WidgetConfigurationIntent, SnippetIntent, and
Open skill

