coding-swift
Swift 6: async/await/actors/Sendable, generics, property wrappers, result builders, SPM, testing
What this skill does
## Purpose
This skill equips the AI to assist with Swift 6 programming, focusing on modern features for iOS and macOS development, including concurrency, generics, and package management.
## When to Use
Use this skill for tasks involving Swift 6 code, such as building async/await-based apps, implementing actors for thread safety, or managing Swift Package Manager (SPM) dependencies in iOS/macOS projects. Apply it when existing code needs updates for Sendable conformance or generics enhancements.
## Key Capabilities
- Async/await: For non-blocking code execution, e.g., handling network requests.
- Actors: To manage shared state safely, ensuring Sendable compliance.
- Generics: Enable reusable code with type constraints, like defining a generic struct.
- Property wrappers: Simplify property management, e.g., for validation.
- Result builders: Construct complex types like views in SwiftUI.
- SPM: Handle dependencies via Package.swift files.
- Testing: Write unit tests using XCTest for async code.
## Usage Patterns
To accomplish tasks, structure code with Swift 6 idioms: Use async functions for I/O operations, wrap shared state in actors, and leverage generics for collections. For SPM, edit Package.swift and run builds. Always check for Sendable conformance to avoid data races. When integrating with Xcode, compile projects using the Swift 6 toolchain by setting the compiler version in project settings.
## Common Commands/API
- Build a Swift package: Run `swift build --configuration release` from the project directory.
- Run tests: Execute `swift test --enable-test-discovery` in an SPM project.
- Async API usage: Define an async function like `func fetchData() async throws -> Data { ... }` and call it with `Task { let data = try await fetchData() }`.
- Actor example: Create an actor with `actor MyActor { var state: Int = 0; func update() { state += 1 } }`.
- Generics API: Use a generic function like `func swap<T>(_ a: inout T, _ b: inout T) { let temp = a; a = b; b = temp }`.
- Property wrapper: Define one as `@propertyWrapper struct Clamped<Value: Comparable> { var wrappedValue: Value { ... } }`.
- SPM config: Edit Package.swift with format like `let package = Package(name: "MyApp", dependencies: [.package(url: "https://github.com/apple/swift-algorithms", from: "1.0.0")])`.
## Integration Notes
Integrate this skill by ensuring the Swift 6 toolchain is installed (e.g., via Xcode 15+). For external services, set auth via environment variables like `$SWIFT_API_KEY` for API calls in code, e.g., `let apiKey = ProcessInfo.processInfo.environment["SWIFT_API_KEY"]`. When combining with other skills, import Swift packages in Xcode by adding them in the "Swift Packages" tab. For concurrency, ensure actors are used in async contexts to avoid runtime errors.
## Error Handling
Handle errors in Swift 6 by using do-catch blocks with async functions, e.g.:
```swift
do {
let result = try await someAsyncFunction()
} catch let error as NSError {
print("Error code: \(error.code)")
}
```
Check for Sendable errors by adding `@Sendable` to functions and fixing non-conforming closures. For SPM, parse build errors from `swift build` output, e.g., look for "error: dependency not found" and resolve by updating Package.swift. Always use `guard` statements for optionals to prevent crashes.
## Concrete Usage Examples
1. **Async network request**: To fetch data from an API, use: `func fetchUser() async throws -> User { let url = URL(string: "https://api.example.com/user")!; let (data, _) = try await URLSession.shared.data(from: url); return try JSONDecoder().decode(User.self, from: data) }`. Call it in a task: `Task { do { let user = try await fetchUser(); print(user.name) } catch { print(error) } }`.
2. **Actor for shared state**: To manage a counter safely, define: `actor Counter { private var value = 0; func increment() { value += 1 } }`. Use it like: `let counter = Counter(); Task { await counter.increment(); print(await counter.value) }` to ensure thread safety.
## Graph Relationships
- Related to: coding-general (shares cluster), ios-development (via tags "ios"), macos-app (via tags "macos"), concurrency-handling (via embedding hint "concurrency actor async").
- Clusters: Connected to "coding" cluster for broader programming skills.
- Tags: Links with skills tagged "swift" for language-specific tasks and "spm" for package management.
Related in General
modeling-omnistudio-epc-catalog
IncludedSalesforce Industries CME EPC product-modeling skill for Product2-based catalog creation. Use when creating EPC products, configuring product attributes, building offer bundles with Product Child Items, or reviewing EPC DataPack JSON metadata for product catalog changes. TRIGGER when: user creates or updates Product2 EPC records, AttributeAssignment payloads, AttributeMetadata/AttributeDefaultValues, Offer bundles, or ProductChildItem relationships. DO NOT TRIGGER when: designing OmniScripts/FlexCards/Integration Procedures (use building-omnistudio-omniscript, building-omnistudio-flexcard, or building-omnistudio-integration-procedure), implementing Apex business logic (use generating-apex), or troubleshooting deployment pipelines (use deploying-metadata).
relationship-science-coach
IncludedUse this skill for direct, practical adult relationship coaching: couples conflict, repair, trust, marriage, dating, flirting, attachment patterns, emotional connection, sex, desire differences, eroticism, kink negotiation, affection, love languages, breakups, and long-term passion. Draw on Gottman, EFT and Hold Me Tight, attachment science, modern sex research, Perel, Nagoski, Kerner, Schnarch, Love and Stosny, and flexible love-language tools. Be concrete and low-hedge. Redirect only for imminent danger, abuse, coercive control, minors, non-consent, self-harm, stalking, or medical/legal/psychiatric decisions.
building-sf-integrations
IncludedSalesforce integration architecture and runtime plumbing with 120-point scoring. Use this skill to set up Named Credentials, External Credentials, External Services, REST/SOAP callout patterns, Platform Events, and Change Data Capture. TRIGGER when: user sets up Named Credentials, External Services, REST/SOAP callouts, Platform Events, CDC, or touches .namedCredential-meta.xml files. DO NOT TRIGGER when: Connected App/OAuth config (use configuring-connected-apps), Apex-only logic (use generating-apex), or data import/export (use handling-sf-data).
venue-templates
IncludedAccess comprehensive LaTeX templates, formatting requirements, and submission guidelines for major scientific publication venues (Nature, Science, PLOS, IEEE, ACM), academic conferences (NeurIPS, ICML, CVPR, CHI), research posters, and grant proposals (NSF, NIH, DOE, DARPA). This skill should be used when preparing manuscripts for journal submission, conference papers, research posters, or grant proposals and need venue-specific formatting requirements and templates.
let-fate-decide
IncludedDraws the 12 Houses of the Zodiac Tarot spread to inject entropy into planning when prompts are vague, ambiguous, or casually delegated. Interprets the spread to guide next steps. Use when the user says 'let fate decide', 'YOLO', 'whatever', 'idk', or other nonchalant phrases, makes Yu-Gi-Oh references, or when you are about to arbitrarily pick between multiple reasonable approaches. Prefer over ask-questions-if-underspecified when the user's tone is casual or playful rather than precision-seeking.
net-ops
IncludedCross-platform network troubleshooting (Windows, macOS, Linux) via local or remote shell. Use for: DNS broken, can't resolve hostnames, nslookup/dig works but apps fail, NRPT, WFP, scutil, /etc/resolver, systemd-resolved, /etc/resolv.conf, NetworkManager, VPN DNS leak residue (ProtonVPN/Mullvad/WireGuard/AnyConnect), AV/firewall blocking DNS or DoH, Tailscale DNS interaction, intermittent connectivity, remote diagnostics over SSH.