References cover each area in depth: concurrency, architecture/DI, testing, i18n, and performance.
Best practices: prefer actors over classes with locks for shared state, @Observable over ObservableObject, structured concurrency over completion handlers, String Catalogs for all user-facing text, profiling in Release (-O) builds, and value types (structs) over classes where possible.
Swift Core
Swift 6 fundamentals shared across all Apple platforms.
Agent Workflow (MANDATORY)
Before ANY implementation, spawn 3 agents in parallel, one Agent call each with a name:
- fuse-ai-pilot:explore-codebase - Analyze existing Swift patterns
- fuse-ai-pilot:research-expert - Verify latest Swift 6 docs via Context7/Exa
- mcp__apple-docs__search_apple_docs - Check Swift concurrency patterns
After implementation, run fuse-ai-pilot:sniper for validation.
Overview
When to Use
- Implementing async/await, actors, Sendable
- Designing app architecture (MVVM, Clean Architecture)
- Writing async tests with XCTest
- Localizing with String Catalogs
- Profiling with Instruments
Why Swift Core
| Feature |
Benefit |
| Actors |
Thread-safe shared state without locks |
| @Observable |
Simple reactive state (replaces ObservableObject) |
| String Catalogs |
Automatic localization with Xcode 15+ |
| Instruments |
Built-in performance profiling |
Key Concepts
Concurrency (Swift 6)
Modern async/await with strict concurrency checking. Actors provide thread-safe state, Sendable marks safe types.
Architecture
MVVM with @Observable is the recommended pattern. Clean Architecture for complex apps with domain separation.
Testing
XCTest with native async/await support. No need for expectations with async tests.
Internationalization
String Catalogs are mandatory. All user-facing text must be localized.
Performance
Profile with Instruments. Use lazy loading, avoid heavy work in view body.
Reference Guide
| Need |
Reference |
| Async/await, actors, Sendable |
concurrency.md |
| MVVM, Clean Architecture, DI |
architecture.md |
| XCTest, async tests, mocking |
testing.md |
| String Catalogs, localization |
i18n.md |
| Instruments, optimization |
performance.md |
Best Practices
- Actors for shared state - Prefer actors over classes with locks
- @Observable over ObservableObject - Simpler, better performance
- Structured concurrency - async/await, no completion handlers
- String Catalogs - ALL user-facing text must be localized
- Profile in Release - Always profile with
-O optimization
- Value types - Prefer structs over classes
1---2name: swift-core3description: Use when implementing Swift 6 fundamentals — concurrency, architecture, testing, i18n, or performance — across any Apple platform.4---56<objective>7Covers Swift 6 language and platform fundamentals shared across iOS, macOS, iPadOS, watchOS, and visionOS: async/await and actors with strict concurrency checking, Sendable typing, app architecture (MVVM with @Observable as the recommended default, Clean Architecture for complex apps), async testing with XCTest, String Catalog-based localization, and performance profiling with Instruments.89References cover each area in depth: concurrency, architecture/DI, testing, i18n, and performance.1011Best practices: prefer actors over classes with locks for shared state, @Observable over ObservableObject, structured concurrency over completion handlers, String Catalogs for all user-facing text, profiling in Release (-O) builds, and value types (structs) over classes where possible.12</objective>1314# Swift Core1516Swift 6 fundamentals shared across all Apple platforms.1718## Agent Workflow (MANDATORY)1920Before ANY implementation, spawn 3 agents in parallel, one `Agent` call each with a `name`:21221. **fuse-ai-pilot:explore-codebase** - Analyze existing Swift patterns232. **fuse-ai-pilot:research-expert** - Verify latest Swift 6 docs via Context7/Exa243. **mcp__apple-docs__search_apple_docs** - Check Swift concurrency patterns2526After implementation, run **fuse-ai-pilot:sniper** for validation.2728---2930## Overview3132### When to Use3334- Implementing async/await, actors, Sendable35- Designing app architecture (MVVM, Clean Architecture)36- Writing async tests with XCTest37- Localizing with String Catalogs38- Profiling with Instruments3940### Why Swift Core4142| Feature | Benefit |43|---------|---------|44| Actors | Thread-safe shared state without locks |45| @Observable | Simple reactive state (replaces ObservableObject) |46| String Catalogs | Automatic localization with Xcode 15+ |47| Instruments | Built-in performance profiling |4849---5051## Key Concepts5253### Concurrency (Swift 6)54Modern async/await with strict concurrency checking. Actors provide thread-safe state, Sendable marks safe types.5556### Architecture57MVVM with @Observable is the recommended pattern. Clean Architecture for complex apps with domain separation.5859### Testing60XCTest with native async/await support. No need for expectations with async tests.6162### Internationalization63String Catalogs are mandatory. All user-facing text must be localized.6465### Performance66Profile with Instruments. Use lazy loading, avoid heavy work in view body.6768---6970## Reference Guide7172| Need | Reference |73|------|-----------|74| Async/await, actors, Sendable | [concurrency.md](references/concurrency.md) |75| MVVM, Clean Architecture, DI | [architecture.md](references/architecture.md) |76| XCTest, async tests, mocking | [testing.md](references/testing.md) |77| String Catalogs, localization | [i18n.md](references/i18n.md) |78| Instruments, optimization | [performance.md](references/performance.md) |7980---8182## Best Practices83841. **Actors for shared state** - Prefer actors over classes with locks852. **@Observable over ObservableObject** - Simpler, better performance863. **Structured concurrency** - async/await, no completion handlers874. **String Catalogs** - ALL user-facing text must be localized885. **Profile in Release** - Always profile with `-O` optimization896. **Value types** - Prefer structs over classes