swift-concurrency-pro▌
twostraws/swift-concurrency-agent-skill · updated Apr 8, 2026
Swift concurrency code reviewer that catches reentrancy bugs, isolation violations, and async/await pitfalls.
- ›Scans for dangerous patterns across actors, structured/unstructured tasks, cancellation handling, and async streams using a 12-step review process
- ›Targets Swift 6.2+ with strict concurrency checking, comparing build settings across multiple targets when needed
- ›Prioritizes structured concurrency (task groups) over unstructured tasks and async/await over closure-based APIs and
Review Swift concurrency code for correctness, modern API usage, and adherence to project conventions. Report only genuine problems - do not nitpick or invent issues.
Review process:
- Scan for known-dangerous patterns using
references/hotspots.mdto prioritize what to inspect. - Check for recent Swift 6.2 concurrency behavior using
references/new-features.md. - Validate actor usage for reentrancy and isolation correctness using
references/actors.md. - Ensure structured concurrency is preferred over unstructured where appropriate using
references/structured.md. - Check unstructured task usage for correctness using
references/unstructured.md. - Verify cancellation is handled correctly using
references/cancellation.md. - Validate async stream and continuation usage using
references/async-streams.md. - Check bridging code between sync and async worlds using
references/bridging.md. - Review any legacy concurrency migrations using
references/interop.md. - Cross-check against common failure modes using
references/bug-patterns.md. - If the project has strict-concurrency errors, map diagnostics to fixes using
references/diagnostics.md. - If reviewing tests, check async test patterns using
references/testing.md.
If doing a partial review, load only the relevant reference files.
Core Instructions
- Target Swift 6.2 or later with strict concurrency checking.
- If code spans multiple targets or packages, compare their concurrency build settings before assuming behavior should match.
- Prefer structured concurrency (task groups) over unstructured (
Task {}). - Prefer Swift concurrency over Grand Central Dispatch for new code. GCD is still acceptable in low-level code, framework interop, or performance-critical synchronous work where queues and locks are the right tool – don't flag these as errors.
- If an API offers both
async/awaitand closure-based variants, always preferasync/await. - Do not introduce third-party concurrency frameworks without asking first.
- Do not suggest
@unchecked Sendableto fix compiler errors. It silences the diagnostic without fixing the underlying race. Prefer actors, value types, orsendingparameters instead. The only legitimate use is for types with internal locking that are provably thread-safe.
Output Format
Organize findings by file. For each issue:
- State the file and relevant line(s).
- Name the rule being violated.
- Show a brief before/after code fix.
Skip files with no issues. End with a prioritized summary of the most impactful changes to make first.
Example output:
DataLoader.swift
Line 18: Actor reentrancy – state may have changed across the await.
// Before
actor Cache {
var items: [String: Data] = [:]
func fetch(_ key: String) async throws -> Data {
if items[key] == nil {
items[key] = try await download(key)
}
return items[key]!
}
}
// After
actor Cache {
var items: [String: Data] = [:]
func fetch(_ key: String) async throws -> Data {
if let existing = items[key] { return existing }
let data = try await download(key)
items[key] = data
return data
}
}
Line 34: Use withTaskGroup instead of creating tasks in a loop.
// Before
for url in urls {
Task { try await fetch(url) }
}
// After
try await withThrowingTaskGroup(of: Data.self) { group in
for url in urls {
group.addTask { try await fetch(url) }
}
for try await result in group {
process(result)
}
}
Summary
- Correctness (high): Actor reentrancy bug on line 18 may cause duplicate downloads and a force-unwrap crash.
- Structure (medium): Unstructured tasks in loop on line 34 lose cancellation propagation.
End of example.
References
references/hotspots.md- Grep targets for code review: known-dangerous patterns and what to check for each.references/new-features.md- Swift 6.2 changes that alter review advice: default actor isolation, isolated conformances, caller-actor async behavior,@concurrent,Task.immediate, task naming, and priority escalation.references/actors.md- Actor reentrancy, shared-state annotations, global actor inference, and isolation patterns.references/structured.md- Task groups over loops, discarding task groups, concurrency limits.references/unstructured.md- Task vs Task.detached, when Task {} is a code smell.references/cancellation.md- Cancellation propagation, cooperative checking, broken cancellation patterns.references/async-streams.md- AsyncStream factory, continuation lifecycle, back-pressure.references/bridging.md- Checked continuations, wrapping legacy APIs,@unchecked Sendable.references/interop.md- Migrating from GCD,Mutex/locks, completion handlers, delegates, and Combine.references/bug-patterns.md- Common concurrency failure modes and their fixes.references/diagnostics.md- Strict-concurrency compiler errors, protocol conformance fixes, and likely remedies.references/testing.md- Async test strategy with Swift Testing, race detection, avoiding timing-based tests.
Discussion
Product Hunt–style comments (not star reviews)- No comments yet — start the thread.
Ratings
4.7★★★★★64 reviews- ★★★★★Yuki Brown· Dec 28, 2024
I recommend swift-concurrency-pro for anyone iterating fast on agent tooling; clear intent and a small, reviewable surface area.
- ★★★★★Zaid Chen· Dec 28, 2024
swift-concurrency-pro fits our agent workflows well — practical, well scoped, and easy to wire into existing repos.
- ★★★★★Tariq Sanchez· Dec 16, 2024
I recommend swift-concurrency-pro for anyone iterating fast on agent tooling; clear intent and a small, reviewable surface area.
- ★★★★★Meera Farah· Dec 12, 2024
Keeps context tight: swift-concurrency-pro is the kind of skill you can hand to a new teammate without a long onboarding doc.
- ★★★★★Hassan Malhotra· Nov 19, 2024
Solid pick for teams standardizing on skills: swift-concurrency-pro is focused, and the summary matches what you get after install.
- ★★★★★Daniel White· Nov 19, 2024
swift-concurrency-pro is among the better-maintained entries we tried; worth keeping pinned for repeat workflows.
- ★★★★★Rahul Santra· Nov 15, 2024
Registry listing for swift-concurrency-pro matched our evaluation — installs cleanly and behaves as described in the markdown.
- ★★★★★Yuki Jackson· Nov 11, 2024
swift-concurrency-pro reduced setup friction for our internal harness; good balance of opinion and flexibility.
- ★★★★★Daniel Martin· Nov 7, 2024
Solid pick for teams standardizing on skills: swift-concurrency-pro is focused, and the summary matches what you get after install.
- ★★★★★Layla Robinson· Nov 3, 2024
We added swift-concurrency-pro from the explainx registry; install was straightforward and the SKILL.md answered most questions upfront.
showing 1-10 of 64