/guide-swift-concurrency
Swift concurrency patterns — actors, structured concurrency, cancellation, async streams, GCD migration, strict-concurrency diagnostics, common bug patterns. Use when writing, reviewing, or debugging concurrent Swift code.
$ npx -y skills add Prisma-Labs-Dev/apple-skills --skill guide-swift-concurrency --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
/guide-swift-concurrency
Context preview
The summary Claude sees to decide when to auto-load this skill.
Swift concurrency patterns — actors, structured concurrency, cancellation, async streams, GCD migration, strict-concurrency diagnostics, common bug patterns. Use when writing, reviewing, or debugging concurrent Swift code.
SKILL.md
guide-swift-concurrency.SKILL.mdname: guide-swift-concurrency
description: Swift concurrency patterns — actors, structured concurrency, cancellation, async streams, GCD migration, strict-concurrency diagnostics, common bug patterns. Use when writing, reviewing, or debugging concurrent Swift code.
type: guide
origin: https://github.com/twostraws/Swift-Concurrency-Agent-Skill
license: MIT
> **Guide Skill** — This is an expert workflow/pattern guide, not API reference documentation. > Originally from [twostraws/Swift-Concurrency-Agent-Skill](https://github.com/twostraws/Swift-Concurrency-Agent-Skill) by Paul Hudson. MIT License.
Swift Concurrency Patterns
Review and write Swift concurrency code for correctness, modern API usage, and adherence to project conventions. Report only genuine problems — do not nitpick or invent issues.
Core Instructions
- Target Swift 6.2 or later with strict concurrency checking.
- Prefer structured concurrency (task groups) over unstructured (`Task {}`).
- Prefer Swift concurrency over GCD for new code. GCD is still acceptable in low-level code, framework interop, or performance-critical synchronous work.
- Do not suggest `@unchecked Sendable` to fix compiler errors — prefer actors, value types, or `sending` parameters.
Review Process
1. Scan for known-dangerous patterns using `references/hotspots.md`. 2. Check for Swift 6.2 concurrency behavior using `references/new-features.md`. 3. Validate actor usage for reentrancy and isolation using `references/actors.md`. 4. Ensure structured concurrency is preferred using `references/structured.md`. 5. Check unstructured task usage using `references/unstructured.md`. 6. Verify cancellation handling using `references/cancellation.md`. 7. Validate async stream and continuation usage using `references/async-streams.md`. 8. Check bridging code between sync and async using `references/bridging.md`. 9. Review legacy concurrency migrations using `references/interop.md`. 10. Cross-check against common failure modes using `references/bug-patterns.md`. 11. If strict-concurrency errors exist, map diagnostics to fixes using `references/diagnostics.md`. 12. If reviewing tests, check async test patterns using `references/testing.md`.
If doing partial work, load only the relevant reference files.
References
| Topic | Reference | |-------|-----------| | Grep targets for code review — known-dangerous patterns | `references/hotspots.md` | | Swift 6.2: default isolation, `@concurrent`, `Task.immediate`, isolated deinit | `references/new-features.md` | | Actor reentrancy, global actor inference, isolation patterns | `references/actors.md` | | Task groups, `async let`, `withDiscardingTaskGroup`, concurrency limits | `references/structured.md` | | `Task` vs `Task.detached`, when `Task {}` is a code smell | `references/unstructured.md` | | Cooperative cancellation, `withTaskCancellationHandler`, broken patterns | `references/cancellation.md` | | `AsyncStream.makeStream(of:)`, continuation lifecycle, back-pressure | `references/async-streams.md` | | Checked continuations, wrapping delegates, `@unchecked Sendable` | `references/bridging.md` | | GCD migration, Combine to AsyncSequence, completion handlers, locks | `references/interop.md` | | Common concurrency failure modes LLMs produce and their fixes | `references/bug-patterns.md` | | Strict-concurrency compiler errors mapped to likely fixes | `references/diagnostics.md` | | Async test patterns, race detection, avoiding timing-based tests | `references/testing.md` |
Read more
name: guide-swift-concurrency description: Swift concurrency patterns — actors, structured concurrency, cancellation, async streams, GCD migration, strict-concurrency diagnostics, common bug patterns. Use when writing, reviewing, or debugging concurrent Swift code. type: guide origin: https://github.com/twostraws/Swift-Concurrency-Agent-Skill license: MIT
> **Guide Skill** — This is an expert workflow/pattern guide, not API reference documentation. > Originally from [twostraws/Swift-Concurrency-Agent-Skill](https://github.com/twostraws/Swift-Concurrency-Agent-Skill) by Paul Hudson. MIT License.
Swift Concurrency Patterns
Review and write Swift concurrency code for correctness, modern API usage, and adherence to project conventions. Report only genuine problems — do not nitpick or invent issues.
Core Instructions
- Target Swift 6.2 or later with strict concurrency checking.
- Prefer structured concurrency (task groups) over unstructured (`Task {}`).
- Prefer Swift concurrency over GCD for new code. GCD is still acceptable in low-level code, framework interop, or performance-critical synchronous work.
- Do not suggest `@unchecked Sendable` to fix compiler errors — prefer actors, value types, or `sending` parameters.
Review Process
1. Scan for known-dangerous patterns using `references/hotspots.md`. 2. Check for Swift 6.2 concurrency behavior using `references/new-features.md`. 3. Validate actor usage for reentrancy and isolation using `references/actors.md`. 4. Ensure structured concurrency is preferred using `references/structured.md`. 5. Check unstructured task usage using `references/unstructured.md`. 6. Verify cancellation handling using `references/cancellation.md`. 7. Validate async stream and continuation usage using `references/async-streams.md`. 8. Check bridging code between sync and async using `references/bridging.md`. 9. Review legacy concurrency migrations using `references/interop.md`. 10. Cross-check against common failure modes using `references/bug-patterns.md`. 11. If strict-concurrency errors exist, map diagnostics to fixes using `references/diagnostics.md`. 12. If reviewing tests, check async test patterns using `references/testing.md`.
If doing partial work, load only the relevant reference files.
References
| Topic | Reference | |-------|-----------| | Grep targets for code review — known-dangerous patterns | `references/hotspots.md` | | Swift 6.2: default isolation, `@concurrent`, `Task.immediate`, isolated deinit | `references/new-features.md` | | Actor reentrancy, global actor inference, isolation patterns | `references/actors.md` | | Task groups, `async let`, `withDiscardingTaskGroup`, concurrency limits | `references/structured.md` | | `Task` vs `Task.detached`, when `Task {}` is a code smell | `references/unstructured.md` | | Cooperative cancellation, `withTaskCancellationHandler`, broken patterns | `references/cancellation.md` | | `AsyncStream.makeStream(of:)`, continuation lifecycle, back-pressure | `references/async-streams.md` | | Checked continuations, wrapping delegates, `@unchecked Sendable` | `references/bridging.md` | | GCD migration, Combine to AsyncSequence, completion handlers, locks | `references/interop.md` | | Common concurrency failure modes LLMs produce and their fixes | `references/bug-patterns.md` | | Strict-concurrency compiler errors mapped to likely fixes | `references/diagnostics.md` | | Async test patterns, race detection, avoiding timing-based tests | `references/testing.md` |
Apple development skills for Claude Code, Codex, and other coding agents — current iOS 26+ APIs, SwiftUI, UIKit, Liquid Glass, Human Interface Guidelines, and practical workflow guides.
Repo: Prisma-Labs-Dev/apple-skills
Other skills on prisma-labs-dev-apple-skills.
- /appintents
API reference: App Intents. Query for Siri, Shortcuts, Spotlight integration, exposing app functionality.
Open skill - /apple-aso
Optimize Apple App Store metadata in store.config.json for ASO (App Store Optimization). Use when working with store.config.json, App Store keywords, titles, subtitles, descriptions, or localizing app metadata. Helps maximize app visibility and downloads.
Open skill - /apple-docs-index
Index of Apple developer documentation for iOS, macOS, and related frameworks. Use when looking up what APIs exist in a framework, browsing available documentation, or deciding what docs to fetch. Covers SwiftUI, UIKit, Core Animation (QuartzCore), XCTest, HealthKit, Combine,
Open skill - /backgroundtasks
API reference: BackgroundTasks. Query for BGTaskScheduler, app refresh, background processing.
Open skill - /combine
API reference: Combine. Query for publishers, subscribers, operators, async data streams.
Open skill - /core-animation
API reference: Core Animation (QuartzCore). Query for CALayer, CAAnimation, CABasicAnimation, CAKeyframeAnimation, CASpringAnimation, CATransaction, CAShapeLayer, CAGradientLayer, CAEmitterLayer, CATransform3D, CADisplayLink.
Open skill

