swiftdata-pro▌
twostraws/swiftdata-agent-skill · updated Apr 8, 2026
Write, review, and improve SwiftData code using modern APIs and best practices.
- ›Validates code against core SwiftData rules including relationships, delete rules, autosaving, and FetchDescriptor patterns
- ›Checks predicates for safety and runtime crashes, with special handling for CloudKit constraints and unsupported operations
- ›Targets Swift 6.2+ with modern concurrency; recommends indexing strategies for iOS 18+ and class inheritance patterns for iOS 26+
- ›Reports only genuine issues
Write and review SwiftData code for correctness, modern API usage, and adherence to project conventions. Report only genuine problems - do not nitpick or invent issues.
Review process:
- Check for core SwiftData issues using
references/core-rules.md. - Check that predicates are safe and supported using
references/predicates.md. - If the project uses CloudKit, check for CloudKit-specific constraints using
references/cloudkit.md. - If the project targets iOS 18+, check for indexing opportunities using
references/indexing.md. - If the project targets iOS 26+, check for class inheritance patterns using
references/class-inheritance.md.
If doing partial work, load only the relevant reference files.
Core Instructions
- Target Swift 6.2 or later, using modern Swift concurrency.
- The user strongly prefers to use SwiftData across the board. Do not suggest Core Data functionality unless it is a feature that cannot be solved with SwiftData.
- Do not introduce third-party frameworks without asking first.
- Use a consistent project structure, with folder layout determined by app features.
Output Format
If the user asks for a review, 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.
If the user asks you to write or improve code, follow the same rules above but make the changes directly instead of returning a findings report.
Example output:
Destination.swift
Line 8: Add an explicit delete rule for relationships.
// Before
var sights: [Sight]
// After
@Relationship(deleteRule: .cascade, inverse: \Sight.destination) var sights: [Sight]
Line 22: Do not use isEmpty == false in predicates – it crashes at runtime. Use ! instead.
// Before
#Predicate<Destination> { $0.sights.isEmpty == false }
// After
#Predicate<Destination> { !$0.sights.isEmpty }
DestinationListView.swift
Line 5: @Query must only be used inside SwiftUI views.
// Before
class DestinationStore {
@Query var destinations: [Destination]
}
// After
class DestinationStore {
var modelContext: ModelContext
func fetchDestinations() throws -> [Destination] {
try modelContext.fetch(FetchDescriptor<Destination>())
}
}
Summary
- Data loss (high): Missing delete rule on line 8 of Destination.swift means sights will be orphaned when a destination is deleted.
- Crash (high):
isEmpty == falseon line 22 will crash at runtime – use!isEmptyinstead. - Incorrect behavior (high):
@Queryon line 5 of DestinationListView.swift only works inside SwiftUI views.
End of example.
References
references/core-rules.md- autosaving, relationships, delete rules, property restrictions, and FetchDescriptor optimization.references/predicates.md- supported predicate operations, dangerous patterns that crash at runtime, and unsupported methods.references/cloudkit.md- CloudKit-specific constraints including uniqueness, optionality, and eventual consistency.references/indexing.md- database indexing for iOS 18+, including single and compound property indexes.references/class-inheritance.md- model subclassing for iOS 26+, including @available requirements, schema setup, and predicate filtering.
Discussion
Product Hunt–style comments (not star reviews)- No comments yet — start the thread.
Ratings
4.7★★★★★36 reviews- ★★★★★Hiroshi Huang· Dec 24, 2024
swiftdata-pro fits our agent workflows well — practical, well scoped, and easy to wire into existing repos.
- ★★★★★Aarav Singh· Dec 16, 2024
I recommend swiftdata-pro for anyone iterating fast on agent tooling; clear intent and a small, reviewable surface area.
- ★★★★★Charlotte Ghosh· Nov 11, 2024
swiftdata-pro is among the better-maintained entries we tried; worth keeping pinned for repeat workflows.
- ★★★★★Aarav Martinez· Nov 7, 2024
Useful defaults in swiftdata-pro — fewer surprises than typical one-off scripts, and it plays nicely with `npx skills` flows.
- ★★★★★Rahul Santra· Nov 3, 2024
swiftdata-pro fits our agent workflows well — practical, well scoped, and easy to wire into existing repos.
- ★★★★★Kofi Thomas· Oct 26, 2024
Registry listing for swiftdata-pro matched our evaluation — installs cleanly and behaves as described in the markdown.
- ★★★★★Pratham Ware· Oct 22, 2024
swiftdata-pro has been reliable in day-to-day use. Documentation quality is above average for community skills.
- ★★★★★Luis Diallo· Oct 2, 2024
swiftdata-pro reduced setup friction for our internal harness; good balance of opinion and flexibility.
- ★★★★★Sakshi Patil· Sep 25, 2024
Keeps context tight: swiftdata-pro is the kind of skill you can hand to a new teammate without a long onboarding doc.
- ★★★★★Mei Thompson· Sep 13, 2024
swiftdata-pro is among the better-maintained entries we tried; worth keeping pinned for repeat workflows.
showing 1-10 of 36