From apple-dev
Use when the user asks about SwiftData usage, designing data models, or has questions about relationships, queries, migrations, or concurrency issues with SwiftData. Provides interactive guidance on SwiftData best practices based on the reference guide.
npx claudepluginhub n0rvyn/indie-toolkit --plugin apple-devThis skill uses the workspace's default tool permissions.
Provide interactive guidance on SwiftData best practices based on `references/swiftdata-guide.md`.
Searches, retrieves, and installs Agent Skills from prompts.chat registry using MCP tools like search_skills and get_skill. Activates for finding skills, browsing catalogs, or extending Claude.
Searches prompts.chat for AI prompt templates by keyword or category, retrieves by ID with variable handling, and improves prompts via AI. Use for discovering or enhancing prompts.
Designs, implements, and audits WCAG 2.2 AA accessible UIs for Web (ARIA/HTML5), iOS (SwiftUI traits), and Android (Compose semantics). Audits code for compliance gaps.
Provide interactive guidance on SwiftData best practices based on references/swiftdata-guide.md.
Determine what aspect of SwiftData the user needs help with:
Grep for section markers:
Grep("<!-- section:", "references/swiftdata-guide.md")
Match the user's need to the section keywords, then read only that section:
Read("references/swiftdata-guide.md", offset=<marker_line + 1>, limit=<lines_to_next_marker>)
Section-to-need mapping:
Based on user's specific scenario:
For @Model definition:
For Relationships:
For Querying:
For Migration:
For Concurrency:
Extract relevant code examples from the guide and adapt to user's context.
modelContext.save() IS needed for: