Swift 6's strict concurrency checking is a minefield of actor isolation warnings and Sendable conformance errors, and this skill gives you the triage workflow to fix them systematically. It covers the Swift 6.2 approachable concurrency features like default MainActor isolation, the @concurrent attribute for background work, and nonisolated(nonsending) behavior that keeps async calls on the caller's actor. The guide walks through isolated conformances, structured concurrency patterns with TaskGroup, and when to use sending parameters versus just slapping @unchecked Sendable on everything. If you're migrating a codebase from @preconcurrency shims or trying to understand why your UI code is suddenly yelling about data races, this is the reference you want open in a side window.
npx skills add https://github.com/dpearson2699/swift-ios-skills --skill swift-concurrency