What problem does it solve? Swift 6.2+ strict concurrency checking produces data-race errors, Sendable violations, and actor isolation warnings that are difficult to diagnose and fix without breaking existing behavior. This Skill triages those compiler diagnostics and applies minimal, behavior-preserving fixes. ## Core Features & Use Cases - Diagnostic triage: Captures exact compiler errors, checks project concurrency settings (language version, strict concurrency level, approachable concurrency mode), and identifies the current actor context. - Targeted remediation: Applies the smallest safe fix such as adding @MainActor to UI-bound types, scoping protocol conformances with isolated conformances, protecting global state, adding Sendable conformance, or offloading work with @concurrent functions. - Iterative verification: Rebuilds, runs the test suite, and re-triages any new warnings until the build is clean. - Use Case: A developer migrating an app to Swift 6.2 hits "Sending 'self.photoProcessor' risks causing data races" errors; the Skill identifies the actor mismatch and resolves it with an isolated conformance or @concurrent offload. ## Quick Start Ask the agent to review this Swift file for Swift 6.2 concurrency errors and fix the data race and actor isolation warnings.