AX

Supports data persistence, schema migrations, and CloudKit synchronization for SwiftData, Core Data, and SQLite.

Install

mkdir -p .claude/skills/axiom-ios-data && curl -L -o skill.zip "https://agentskills.codes/api/skills/download/6766" && unzip -o skill.zip -d .claude/skills/axiom-ios-data && rm skill.zip

Installs to .claude/skills/axiom-ios-data

Activation

This is the description your AI agent reads to decide when to run this skill — the better it matches your request, the more reliably it fires.

Use when working with ANY data persistence, database, storage, CloudKit, migration, or serialization. Covers SwiftData, Core Data, GRDB, SQLite, CloudKit sync, file storage, Codable, migrations.
194 chars✓ has a “when” trigger
Intermediate

Key capabilities

  • Configure SwiftData and Core Data stacks
  • Perform database schema migrations
  • Implement CloudKit synchronization
  • Manage Codable serialization patterns

How it works

It provides a decision tree and auditing agents to select the appropriate persistence framework and ensure safe schema migration and synchronization.

Inputs & outputs

You give it
Data persistence requirements
You get back
Configured database schema or synchronization logic

When to use axiom-ios-data

  • Set up SwiftData schema
  • Perform database migration
  • Configure CloudKit sync

About this skill

Data & Persistence

You MUST use this skill for ANY data persistence, database, storage, CloudKit, or serialization work.

<!-- AXIOM_AUDITOR_INLINE_BEGIN — auto-maintained by scripts/build-inlined-auditors.ts; do not hand-edit -->

Not on Claude Code? Where this router says "Launch some-auditor agent", read that auditor's file in this suite and follow it inline — the same procedure, needing only file search and read.

Available here: skills/codable-auditor.md, skills/core-data-auditor.md, skills/database-schema-auditor.md, skills/grdb-performance-auditor.md, skills/icloud-auditor.md, skills/storage-auditor.md, skills/swiftdata-auditor.md.

Agents that need Bash — builds, tests, simulators, crash symbolication — stay Claude Code-only; there is no inline equivalent for those.

<!-- AXIOM_AUDITOR_INLINE_END -->

When to Use

Use this skill when working with:

  • Databases (SwiftData, Core Data, GRDB, SQLiteData)
  • Schema migrations
  • CloudKit sync
  • File storage (iCloud Drive, local storage)
  • Data serialization (Codable, JSON)
  • Storage strategy decisions
  • Keychain / secure credential storage
  • Encryption, signing, key management (CryptoKit)

Quick Reference

Symptom / TaskReference
SwiftData @Model, @Query, ModelContext, sectioned queries / ResultsObserver / @Attribute(.codable) / dynamic compound predicates (OS27)See skills/swiftdata.md
SwiftData schema migration, VersionedSchemaSee skills/swiftdata-migration.md
SwiftData migration crashes, data lossSee skills/swiftdata-migration-diag.md
Migrating from Realm to SwiftDataSee skills/realm-migration-ref.md
SwiftData vs SQLiteData decisionSee skills/sqlitedata-migration.md
GRDB queries, upsert, ValueObservation, DatabaseMigrator, encryptionSee skills/grdb.md
GRDB performance, indexes, EXPLAIN QUERY PLAN, cursors, observation not firingSee skills/grdb-performance.md
Full-text search (FTS5) in GRDB or SQLiteDataSee skills/sqlite-fts-ref.md
Storing or querying JSON inside a SQLite column (JSON1, JSONB)See skills/sql-json-ref.md
GRDB shared across app + widget/extension (App Group)See skills/grdb-app-groups.md
SQLiteData @Table, CRUD, SyncEngineSee skills/sqlitedata.md
SQLiteData advanced patterns, CTEs, viewsSee skills/sqlitedata-ref.md
Core Data stack, relationships, concurrencySee skills/core-data.md
Core Data migration crashes, thread errorsSee skills/core-data-diag.md
ANY schema migration safetySee skills/database-migration.md
Codable, JSON encoding/decodingSee skills/codable.md
Cloud sync architecture, offline-firstSee skills/cloud-sync.md
CloudKit, CKSyncEngine, CKRecordSee skills/cloudkit-ref.md
iCloud Drive, ubiquitous containersSee skills/icloud-drive-ref.md
Cloud sync errors, conflict resolutionSee skills/cloud-sync-diag.md
Storage strategy, where to store dataSee skills/storage.md
Storage issues, files disappearedSee skills/storage-diag.md
Storage management, disk pressureSee skills/storage-management-ref.md
Keychain / secure credential storageSee axiom-security (skills/keychain.md)
Keychain errors (errSecDuplicateItem)See axiom-security (skills/keychain-diag.md)
Keychain API referenceSee axiom-security (skills/keychain-ref.md)
Encryption / signing / key managementSee axiom-security (skills/cryptokit.md)
CryptoKit API referenceSee axiom-security (skills/cryptokit-ref.md)
File protection, NSFileProtectionSee axiom-security (skills/file-protection-ref.md)
tvOS data persistence (no local storage)See axiom-swift (skills/tvos.md)
tvOS + CloudKit SyncEngineSee skills/sqlitedata.md

Automated Scanning

Core Data audit → Launch core-data-auditor agent or /axiom:audit core-data (safety violations, architectural gaps — migration options, thread-confinement, N+1 queries, merge policies, context isolation) Codable audit → Launch codable-auditor agent or /axiom:audit codable (safety violations, semantic gaps — try? swallowing errors, JSONSerialization, date handling, silent field drops, wrapper-hidden fallbacks, cross-file strategy drift, enum future-case crashes) iCloud audit → Launch icloud-auditor agent or /axiom:audit icloud (entitlement checks, file coordination, incomplete CKError matrix coverage, missing account-change observation, polling vs CKSubscriptions, SwiftData + CloudKit unsupported features, compound risks like uncoordinated I/O across extensions) Storage audit → Launch storage-auditor agent or /axiom:audit storage (wrong file locations, missing backup exclusions, sensitive data on disk vs Keychain, missing App Group containers, unbounded cache growth, orphan files, compound risks like user data in tmp/ + critical content) Database schema audit → Launch database-schema-auditor agent or /axiom:audit database-schema (unsafe ALTER TABLE, DROP operations, missing idempotency, FK constraints declared but not enforced, incomplete upgrade paths, compound risks like INSERT OR REPLACE on FK-referenced tables) GRDB performance audit → Launch grdb-performance-auditor agent or /axiom:audit grdb-performance (raw SQL string interpolation, missing FK indexes in raw SQL, missing PRAGMA optimize for raw-GRDB apps, journal mode mismatch for app-group DBs, missing observesSuspensionNotifications for shared DBs, prefix-redundant indexes in raw SQL, legacy Record subclass, INSERT OR REPLACE misused as upsert, observation on WITHOUT ROWID tables, WITHOUT ROWID upsert below GRDB 7.11) SwiftData audit → Launch swiftdata-auditor agent or /axiom:audit swiftdata (struct models, missing schema registration, array relationships without defaults, background context misuse, N+1 patterns, stale predicates, CloudKit conformance gaps, compound risks like struct model + array relationship)

Decision Tree

  1. SwiftData? → skills/swiftdata.md, skills/swiftdata-migration.md
  2. Core Data? → skills/core-data.md, skills/core-data-diag.md
  3. GRDB? → skills/grdb.md 3a. GRDB perf, slow query, schema design for perf? → skills/grdb-performance.md 3b. FTS5 (full-text search, any layer)? → skills/sqlite-fts-ref.md 3c. DB shared across app + extension/widget/Live Activity? → skills/grdb-app-groups.md
  4. SQLiteData? → skills/sqlitedata.md, skills/sqlitedata-ref.md
  5. ANY schema migration? → skills/database-migration.md (ALWAYS — prevents data loss)
  6. Realm migration? → skills/realm-migration-ref.md
  7. SwiftData vs SQLiteData? → skills/sqlitedata-migration.md
  8. Cloud sync architecture? → skills/cloud-sync.md
  9. CloudKit? → skills/cloudkit-ref.md
  10. iCloud Drive? → skills/icloud-drive-ref.md
  11. Cloud sync errors? → skills/cloud-sync-diag.md
  12. Codable/JSON serialization? → skills/codable.md
  13. File storage strategy? → skills/storage.md, skills/storage-diag.md, skills/storage-management-ref.md
  14. File protection? → See axiom-security (skills/file-protection-ref.md)
  15. Keychain / storing tokens, passwords, secrets securely? → See axiom-security (skills/keychain.md), See axiom-security (skills/keychain-diag.md), See axiom-security (skills/keychain-ref.md)
  16. SecItem errors (errSecDuplicateItem, errSecItemNotFound, errSecInteractionNotAllowed)? → See axiom-security (skills/keychain-diag.md)
  17. Encryption, signing, Secure Enclave, CryptoKit? → See axiom-security (skills/cryptokit.md), See axiom-security (skills/cryptokit-ref.md)
  18. Quantum-secure cryptography, HPKE, ML-KEM? → See axiom-security (skills/cryptokit.md)
  19. Want Core Data safety scan? → core-data-auditor (Agent)
  20. Want Codable anti-pattern scan? → codable-auditor (Agent)
  21. Want iCloud sync audit? → icloud-auditor (Agent)
  22. Want storage location audit? → storage-auditor (Agent)
  23. Want database schema/migration safety scan? → database-schema-auditor (Agent) 23a. Want GRDB performance/app-group scan? → grdb-performance-auditor (Agent)
  24. Want SwiftData code audit? → swiftdata-auditor (Agent)
  25. tvOS data persistence? → See axiom-swift (skills/tvos.md) (CRITICAL: no persistent local storage) + skills/sqlitedata.md (CloudKit SyncEngine)
  26. SwiftData @MainActor / background context threading? → /skill axiom-concurrency
  27. Structured data generation with Foundation Models? → /skill axiom-ai

Sync patterns

  • HealthKit anchored/observer queries as a generalizable change-tracking pattern → See axiom-health (skills/sync-and-background.md)

Anti-Rationalization

ThoughtReality
"Just adding a column, no migration needed"Schema changes without migration crash users. database-migration prevents data loss.
"I'll handle the migration manually"Manual migrations miss edge cases. database-migration covers rollback and testing.
"Simple query, I don't need the skill"Query patterns prevent N+1 and thread-safety issues. The skill has copy-paste solutions.
"CloudKit sync is straightforward"CloudKit has 15+ failure modes. cloud-sync-diag diagnoses them systematically.
"I know Codable well enough"Codable has silent data loss traps (try? swallows errors). codable skill prevents production bugs.
"I'll use local storage on tvOS"tvOS has NO persistent local storage. System deletes Caches at any time. See axiom-swift (skills/tvos.md) for the iCloud-first pattern.
"UserDefaults is fine for this token"UserDefaults is unencrypted, backed up to iCloud, and visible to MDM profiles. One audit catches it. keychain stores tokens securely.
"I'll encrypt it myself with CommonCrypto"CryptoKit replaced CommonCrypto's buffer-management nightmares with one-line APIs. cryptokit prevents misuse.

Critical Pattern: Migrations

ALWAYS read skills/database-migration.md when adding/modifying database columns.

This prevents:


Content truncated.

When not to use it

  • tvOS local storage persistence
  • Non-Apple platform data persistence

Limitations

  • tvOS lacks persistent local storage
  • Migrations require specific safety checks to prevent data loss

How it compares

It enforces automated safety audits for migrations and Codable patterns to prevent data loss and silent serialization failures.

Compared to similar skills

axiom-ios-data side by side with the closest alternatives in the catalog.

SkillInstallsUpdatedSafetyDifficulty
axiom-ios-data (this skill)11moNo flagsIntermediate
drizzle-orm322moNo flagsIntermediate
database-design66moReviewIntermediate
prisma-expert126moReviewIntermediate

Try saying

Example prompts that trigger this skill in your AI assistant.

More by CharlesWiltgen

View all by CharlesWiltgen

axiom-ios-build

CharlesWiltgen

Use when ANY iOS build fails, test crashes, Xcode misbehaves, or environment issue occurs before debugging code. Covers build failures, compilation errors, dependency conflicts, simulator problems, environment-first diagnostics.

332

axiom-ios-accessibility

CharlesWiltgen

Use when fixing or auditing ANY accessibility issue - VoiceOver, Dynamic Type, color contrast, touch targets, WCAG compliance, App Store accessibility review.

13

axiom-ios-ai

CharlesWiltgen

Use when implementing ANY Apple Intelligence or on-device AI feature. Covers Foundation Models, @Generable, LanguageModelSession, structured output, Tool protocol, iOS 26 AI integration.

10

axiom-ios-performance

CharlesWiltgen

Use when app feels slow, memory grows, battery drains, or diagnosing ANY performance issue. Covers memory leaks, profiling, Instruments workflows, retain cycles, performance optimization.

11

axiom-networking

CharlesWiltgen

Use when implementing Network.framework connections, debugging connection failures, migrating from sockets/URLSession streams, or adopting structured concurrency networking patterns - prevents deprecated API usage, reachability anti-patterns, and thread-safety violations with iOS 12-26+ APIs

11

axiom-vision

CharlesWiltgen

subject segmentation, VNGenerateForegroundInstanceMaskRequest, isolate object from hand, VisionKit subject lifting, image foreground detection, instance masks, class-agnostic segmentation, VNRecognizeTextRequest, OCR, VNDetectBarcodesRequest, DataScannerViewController, document scanning, RecognizeDocumentsRequest

01

Search skills

Search the agent skills registry