Getting Started with Axiom
Welcome! This skill helps new users discover the most relevant Axiom skills for their situation.
How This Skill Works
- Ask the user 2-3 targeted questions about their project
- Provide personalized skill recommendations (3-5 skills max)
- Show example prompts they can try immediately
- Include a complete skill reference for browsing
Step 1: Ask Questions
Use the AskUserQuestion tool to gather context:
Question 1: Current Focus
Question: "What brings you to Axiom today?"
Header: "Focus"
Options:
- "Debugging an issue" → Prioritize diagnostic skills
- "Optimizing performance" → Prioritize profiling skills
- "Adding new features" → Prioritize reference skills
- "Code review / quality check" → Prioritize audit commands
- "Just exploring" → Show overview
Question 2: Tech Stack
Question: "What's your primary tech stack?"
Header: "Stack"
Options:
- "SwiftUI (iOS 16+)" → SwiftUI-focused skills
- "UIKit" → UIKit-focused skills
- "Mixed SwiftUI + UIKit" → Both
- "Starting new project" → Best practices skills
Question 3: Pain Points (Optional, Multi-Select)
Only ask if "Debugging an issue" was selected:
Question: "Which areas are you struggling with?"
Header: "Pain Points"
Multi-select: true
Options:
- "Xcode/build issues"
- "Memory leaks"
- "UI/animation problems"
- "Database/persistence"
- "Networking"
- "Concurrency/async"
- "Accessibility"
Step 2: Provide Personalized Recommendations
Based on answers, recommend 3-5 skills using this matrix:
If "Debugging an issue"
Always recommend: axiom:xcode-debugging (universal starting point)
Then add based on pain points:
- Xcode/build → xcode-debugging, axiom-build-debugging
- Memory leaks → memory-debugging, axiom-objc-block-retain-cycles
- UI/animation (SwiftUI) → swiftui-debugging, axiom-swiftui-performance
- UI/animation (UIKit) → uikit-animation-debugging, axiom-auto-layout-debugging
- Database → database-migration, axiom-sqlitedata-migration (decision guide)
- Networking → networking, axiom-networking-diag
- Concurrency → swift-concurrency
- Accessibility → accessibility-diag
If "Optimizing performance"
SwiftUI stack:
- performance-profiling (decision trees for tools)
- swiftui-performance (SwiftUI Instrument)
- swiftui-debugging (view update issues)
UIKit/Mixed:
- performance-profiling (Instruments guide)
- memory-debugging (leak detection)
- uikit-animation-debugging (CAAnimation issues)
If "Adding new features"
Design decisions:
- hig (quick design decisions, checklists)
- hig-ref (comprehensive HIG reference)
iOS 26+ features:
- liquid-glass (material design system)
- foundation-models (on-device AI)
- swiftui-26-ref (complete iOS 26 guide)
Navigation patterns:
- swiftui-nav (iOS 18+ Tab/Sidebar, deep linking)
- swiftui-nav-ref (comprehensive API reference)
Integrations:
- app-intents-ref (Siri, Shortcuts, Spotlight)
- networking (Network.framework modern patterns)
Data persistence:
- Ask: "Which persistence framework?" → swiftdata, axiom-sqlitedata, or grdb
- Migration: axiom-sqlitedata-migration, axiom-realm-migration-ref
If "Code review / quality check"
Start with audit commands (quick wins):
/axiom:audit-accessibility — WCAG compliance
/axiom:audit-concurrency — Swift 6 violations
/axiom:audit-memory — Leak patterns
/axiom:audit-core-data — Migration safety
/axiom:audit-networking — Deprecated APIs
Then suggest:
- Review skills based on what audits find
If "Just exploring"
Show the complete skill index (see below) and explain categories.
Step 3: Output Format
After gathering answers, output:
## Your Recommended Skills
Based on your answers, here are the skills most relevant to you right now:
### [Icon] [Category Name]
**axiom:[skill-name]** — [One-line description]
> Try: "[Example prompt they can use immediately]"
[Repeat for 3-5 skills]
### Quick Wins
Run these audit commands to find issues automatically:
- `/axiom:audit-[name]` — [What it finds]
## What's Next
1. **Try the example prompts above** — Copy/paste to see how skills work
2. **Run an audit command** — Get immediate actionable insights
3. **Describe your problem** — I'll suggest the right skill
4. **Browse the complete index below** — Explore all 34 skills
---
[Include the Complete Skill Reference below]
Complete Skill Reference
Include this reference section in every response for browsing:
Debugging & Troubleshooting
Environment & Build Issues
- xcode-debugging — BUILD FAILED, simulator hangs, zombie processes, environment-first diagnostics
- build-debugging — Dependency conflicts, CocoaPods/SPM failures, Multiple commands produce
Memory & Performance
- memory-debugging — Memory growth, retain cycles, leak diagnosis with Instruments
- performance-profiling — Decision trees for Instruments (Time Profiler, Allocations, Core Data, Energy)
- objc-block-retain-cycles — Objective-C block memory leaks, weak-strong pattern
UI Debugging
- swiftui-debugging — View update issues, struct mutation, binding identity, view recreation
- swiftui-performance — SwiftUI Instrument (iOS 26), long view bodies, Cause & Effect Graph
- uikit-animation-debugging — CAAnimation completion, spring physics, gesture+animation jank
- auto-layout-debugging — Auto Layout conflicts, constraint debugging (not yet in manifest)
Concurrency & Async
- swift-concurrency — Swift 6 strict concurrency, @concurrent, actor isolation, Sendable, data races
UI & Design (iOS 26+)
Liquid Glass (Material Design)
- liquid-glass — Implementation, Regular vs Clear variants, design review defense
- liquid-glass-ref — Complete app-wide adoption guide (icons, controls, navigation, windows)
Layout & Navigation
- swiftui-layout — ViewThatFits vs AnyLayout vs onGeometryChange, decision trees, iOS 26 free-form windows
- swiftui-layout-ref — Complete layout API reference
- swiftui-nav — NavigationStack vs NavigationSplitView, deep links, coordinator patterns, iOS 18+ Tab/Sidebar
- swiftui-nav-ref — Comprehensive navigation API reference
- swiftui-nav-diag — Navigation not responding, unexpected pops, deep link failures, state loss
Testing
- ui-testing — Recording UI Automation (Xcode 26), condition-based waiting, accessibility-first patterns
Persistence
Frameworks
- swiftdata — @Model, @Query, @Relationship, CloudKit, iOS 26 features, Swift 6 concurrency
- sqlitedata — Point-Free SQLiteData, @Table, FTS5, CTEs, JSON aggregation, CloudKit sync
- grdb — Raw SQL, complex joins, ValueObservation, DatabaseMigrator, performance
- database-migration — Safe schema evolution for SQLite/GRDB, additive migrations, prevents data loss
Migration Guides
- sqlitedata-migration — Decision guide, pattern equivalents, performance benchmarks
- realm-migration-ref — Realm → SwiftData migration (Realm Device Sync sunset Sept 2025)
Networking
- networking — Network.framework (iOS 12-26), NetworkConnection (iOS 26), structured concurrency
- networking-diag — Connection timeouts, TLS failures, data not arriving, performance issues
- network-framework-ref — Complete API reference, TLV framing, Coder protocol, Wi-Fi Aware
Apple Intelligence (iOS 26+)
- foundation-models — On-device AI, LanguageModelSession, @Generable, streaming, tool calling
- foundation-models-diag — Context exceeded, guardrails, slow generation, availability issues
- foundation-models-ref — Complete API reference, all 26 WWDC examples
Design & UI Guidelines
- hig — Quick design decisions, color/background/typography choices, HIG compliance checklists
- hig-ref — Comprehensive Human Interface Guidelines reference with code examples
Integrations
- app-intents-ref — Siri, Apple Intelligence, Shortcuts, Spotlight (iOS 16+)
- swiftui-26-ref — iOS 26 SwiftUI features, @Animatable, 3D layout, WebView, AttributedString
- avfoundation-ref — Audio APIs, bit-perfect DAC, iOS 26 spatial audio, ASAF/APAC
Diagnostics (Systematic Troubleshooting)
- accessibility-diag — VoiceOver, Dynamic Type, color contrast, WCAG compliance, App Store defense
- core-data-diag — Schema migration crashes, thread-confinement, N+1 queries
Audit Commands (Quick Scans)
/axiom:audit-accessibility — VoiceOver labels, Dynamic Type, contrast, touch targets
/axiom:audit-concurrency — Swift 6 violations, unsafe tasks, missing @MainActor
/axiom:audit-memory — Timer leaks, observer leaks, closure captures, delegate cycles
/axiom:audit-core-data — Migration risks, thread violations, N+1 queries
/axiom:audit-networking — Deprecated APIs (SCNetworkReachability, CFSocket), anti-patterns
/axiom:audit-liquid-glass — Glass adoption opportunities, toolbar improvements, blur migration
Skill Categories Explained
- Discipline skills (no suffix) — Step-by-step workflows with pressure scenarios, TDD-tested
- Diagnostic skills (-diag suffix) — Systematic troubleshooting with production crisis defense
- Reference skills (-ref suffix) — Comprehensive API guides with WWDC examples
Quick Decision Trees
"My build is failing"
→ Start: axiom:xcode-debugging
→ If dependency issue: axiom:build-debugging
"App is slow"
→ Start: axiom:performance-profiling (decision trees)
→ If SwiftUI: axiom:swiftui-performance
→ If memory grows: axiom:memory-debugging
"Memory leak"
→ Start: axiom:memory-debugging
→ If Objective-C blocks: axiom:objc-block-retain-cycles
"SwiftUI view issues"
→ Start: axiom:swiftui-debugging
→ If performance: axiom:swiftui-performance
"Navigation problems"
→ Start: axiom:swiftui-nav-diag (troubleshooting)
→ For patterns: axiom:swiftui-nav
"Which database?"
→ Decision guide: axiom:sqlitedata-migration
→ Then: axiom:swiftdata, axiom:sqlitedata, or axiom:grdb
"iOS 26 design"
→ Start: axiom:liquid-glass
→ Complete guide: axiom:liquid-glass-ref
"Code quality check"
→ Run: /axiom:audit-accessibility, /axiom:audit-concurrency, /axiom:audit-memory
→ Fix issues with relevant skills
How Skills Work
Axiom skills load automatically — you don't need to memorize names or commands.
Automatic triggering (most common): Just describe your problem naturally. Claude detects which skill applies and loads it.
- "My SwiftData CloudKit sync isn't working" → loads
cloud-sync-diag
- "I'm getting Sendable errors in Swift 6" → loads
swift-concurrency
Explicit invocation: If you know the skill name, invoke it directly:
$axiom-swift-concurrency
$axiom-liquid-glass
Audit commands: Run automated scans with slash commands:
/axiom:audit-memory — scans for memory leak patterns
/axiom:audit-concurrency — scans for Swift 6 violations
Key insight: You don't need to know skill names. Describe what you're working on and Axiom routes to the right skill automatically.
Tips
- Describe your problem — Claude will suggest the right skill
- Run audits first — Quick wins with automated scans
- Start with diagnostic skills — When troubleshooting specific issues
- Use reference skills — When implementing new features
- All skills are searchable — Just describe what you need
Total: 50 skills, 12 audit commands, covering the complete iOS development lifecycle from design to deployment
1---2name: axiom-getting-started3description: Use when first installing Axiom, unsure which skill to use, want an overview of available skills, or need help finding the right skill for your situation — interactive onboarding that recommends skills based on your project and current focus4license: MIT5---67# Getting Started with Axiom89Welcome! This skill helps new users discover the most relevant Axiom skills for their situation.1011## How This Skill Works12131. Ask the user 2-3 targeted questions about their project142. Provide personalized skill recommendations (3-5 skills max)153. Show example prompts they can try immediately164. Include a complete skill reference for browsing1718## Step 1: Ask Questions1920Use the AskUserQuestion tool to gather context:2122### Question 1: Current Focus2324```25Question: "What brings you to Axiom today?"26Header: "Focus"27Options:28- "Debugging an issue" → Prioritize diagnostic skills29- "Optimizing performance" → Prioritize profiling skills30- "Adding new features" → Prioritize reference skills31- "Code review / quality check" → Prioritize audit commands32- "Just exploring" → Show overview33```3435### Question 2: Tech Stack3637```38Question: "What's your primary tech stack?"39Header: "Stack"40Options:41- "SwiftUI (iOS 16+)" → SwiftUI-focused skills42- "UIKit" → UIKit-focused skills43- "Mixed SwiftUI + UIKit" → Both44- "Starting new project" → Best practices skills45```4647### Question 3: Pain Points (Optional, Multi-Select)4849Only ask if "Debugging an issue" was selected:5051```52Question: "Which areas are you struggling with?"53Header: "Pain Points"54Multi-select: true55Options:56- "Xcode/build issues"57- "Memory leaks"58- "UI/animation problems"59- "Database/persistence"60- "Networking"61- "Concurrency/async"62- "Accessibility"63```6465## Step 2: Provide Personalized Recommendations6667Based on answers, recommend 3-5 skills using this matrix:6869### If "Debugging an issue"7071**Always recommend**: axiom:xcode-debugging (universal starting point)7273**Then add based on pain points**:74- Xcode/build → xcode-debugging, axiom-build-debugging75- Memory leaks → memory-debugging, axiom-objc-block-retain-cycles76- UI/animation (SwiftUI) → swiftui-debugging, axiom-swiftui-performance77- UI/animation (UIKit) → uikit-animation-debugging, axiom-auto-layout-debugging78- Database → database-migration, axiom-sqlitedata-migration (decision guide)79- Networking → networking, axiom-networking-diag80- Concurrency → swift-concurrency81- Accessibility → accessibility-diag8283### If "Optimizing performance"8485**SwiftUI stack**:861. performance-profiling (decision trees for tools)872. swiftui-performance (SwiftUI Instrument)883. swiftui-debugging (view update issues)8990**UIKit/Mixed**:911. performance-profiling (Instruments guide)922. memory-debugging (leak detection)933. uikit-animation-debugging (CAAnimation issues)9495### If "Adding new features"9697**Design decisions**:98- hig (quick design decisions, checklists)99- hig-ref (comprehensive HIG reference)100101**iOS 26+ features**:102- liquid-glass (material design system)103- foundation-models (on-device AI)104- swiftui-26-ref (complete iOS 26 guide)105106**Navigation patterns**:107- swiftui-nav (iOS 18+ Tab/Sidebar, deep linking)108- swiftui-nav-ref (comprehensive API reference)109110**Integrations**:111- app-intents-ref (Siri, Shortcuts, Spotlight)112- networking (Network.framework modern patterns)113114**Data persistence**:115- Ask: "Which persistence framework?" → swiftdata, axiom-sqlitedata, or grdb116- Migration: axiom-sqlitedata-migration, axiom-realm-migration-ref117118### If "Code review / quality check"119120**Start with audit commands** (quick wins):1211. `/axiom:audit-accessibility` — WCAG compliance1222. `/axiom:audit-concurrency` — Swift 6 violations1233. `/axiom:audit-memory` — Leak patterns1244. `/axiom:audit-core-data` — Migration safety1255. `/axiom:audit-networking` — Deprecated APIs126127**Then suggest**:128- Review skills based on what audits find129130### If "Just exploring"131132Show the complete skill index (see below) and explain categories.133134## Step 3: Output Format135136After gathering answers, output:137138```markdown139## Your Recommended Skills140141Based on your answers, here are the skills most relevant to you right now:142143### [Icon] [Category Name]144**axiom:[skill-name]** — [One-line description]145> Try: "[Example prompt they can use immediately]"146147[Repeat for 3-5 skills]148149### Quick Wins150Run these audit commands to find issues automatically:151- `/axiom:audit-[name]` — [What it finds]152153## What's Next1541551. **Try the example prompts above** — Copy/paste to see how skills work1562. **Run an audit command** — Get immediate actionable insights1573. **Describe your problem** — I'll suggest the right skill1584. **Browse the complete index below** — Explore all 34 skills159160---161162[Include the Complete Skill Reference below]163```164165## Complete Skill Reference166167Include this reference section in every response for browsing:168169### Debugging & Troubleshooting170171**Environment & Build Issues**172- **xcode-debugging** — BUILD FAILED, simulator hangs, zombie processes, environment-first diagnostics173- **build-debugging** — Dependency conflicts, CocoaPods/SPM failures, Multiple commands produce174175**Memory & Performance**176- **memory-debugging** — Memory growth, retain cycles, leak diagnosis with Instruments177- **performance-profiling** — Decision trees for Instruments (Time Profiler, Allocations, Core Data, Energy)178- **objc-block-retain-cycles** — Objective-C block memory leaks, weak-strong pattern179180**UI Debugging**181- **swiftui-debugging** — View update issues, struct mutation, binding identity, view recreation182- **swiftui-performance** — SwiftUI Instrument (iOS 26), long view bodies, Cause & Effect Graph183- **uikit-animation-debugging** — CAAnimation completion, spring physics, gesture+animation jank184- **auto-layout-debugging** — Auto Layout conflicts, constraint debugging (not yet in manifest)185186### Concurrency & Async187- **swift-concurrency** — Swift 6 strict concurrency, @concurrent, actor isolation, Sendable, data races188189### UI & Design (iOS 26+)190191**Liquid Glass (Material Design)**192- **liquid-glass** — Implementation, Regular vs Clear variants, design review defense193- **liquid-glass-ref** — Complete app-wide adoption guide (icons, controls, navigation, windows)194195**Layout & Navigation**196- **swiftui-layout** — ViewThatFits vs AnyLayout vs onGeometryChange, decision trees, iOS 26 free-form windows197- **swiftui-layout-ref** — Complete layout API reference198- **swiftui-nav** — NavigationStack vs NavigationSplitView, deep links, coordinator patterns, iOS 18+ Tab/Sidebar199- **swiftui-nav-ref** — Comprehensive navigation API reference200- **swiftui-nav-diag** — Navigation not responding, unexpected pops, deep link failures, state loss201202### Testing203- **ui-testing** — Recording UI Automation (Xcode 26), condition-based waiting, accessibility-first patterns204205### Persistence206207**Frameworks**208- **swiftdata** — @Model, @Query, @Relationship, CloudKit, iOS 26 features, Swift 6 concurrency209- **sqlitedata** — Point-Free SQLiteData, @Table, FTS5, CTEs, JSON aggregation, CloudKit sync210- **grdb** — Raw SQL, complex joins, ValueObservation, DatabaseMigrator, performance211- **database-migration** — Safe schema evolution for SQLite/GRDB, additive migrations, prevents data loss212213**Migration Guides**214- **sqlitedata-migration** — Decision guide, pattern equivalents, performance benchmarks215- **realm-migration-ref** — Realm → SwiftData migration (Realm Device Sync sunset Sept 2025)216217### Networking218- **networking** — Network.framework (iOS 12-26), NetworkConnection (iOS 26), structured concurrency219- **networking-diag** — Connection timeouts, TLS failures, data not arriving, performance issues220- **network-framework-ref** — Complete API reference, TLV framing, Coder protocol, Wi-Fi Aware221222### Apple Intelligence (iOS 26+)223- **foundation-models** — On-device AI, LanguageModelSession, @Generable, streaming, tool calling224- **foundation-models-diag** — Context exceeded, guardrails, slow generation, availability issues225- **foundation-models-ref** — Complete API reference, all 26 WWDC examples226227### Design & UI Guidelines228- **hig** — Quick design decisions, color/background/typography choices, HIG compliance checklists229- **hig-ref** — Comprehensive Human Interface Guidelines reference with code examples230231### Integrations232- **app-intents-ref** — Siri, Apple Intelligence, Shortcuts, Spotlight (iOS 16+)233- **swiftui-26-ref** — iOS 26 SwiftUI features, @Animatable, 3D layout, WebView, AttributedString234- **avfoundation-ref** — Audio APIs, bit-perfect DAC, iOS 26 spatial audio, ASAF/APAC235236### Diagnostics (Systematic Troubleshooting)237- **accessibility-diag** — VoiceOver, Dynamic Type, color contrast, WCAG compliance, App Store defense238- **core-data-diag** — Schema migration crashes, thread-confinement, N+1 queries239240### Audit Commands (Quick Scans)241- `/axiom:audit-accessibility` — VoiceOver labels, Dynamic Type, contrast, touch targets242- `/axiom:audit-concurrency` — Swift 6 violations, unsafe tasks, missing @MainActor243- `/axiom:audit-memory` — Timer leaks, observer leaks, closure captures, delegate cycles244- `/axiom:audit-core-data` — Migration risks, thread violations, N+1 queries245- `/axiom:audit-networking` — Deprecated APIs (SCNetworkReachability, CFSocket), anti-patterns246- `/axiom:audit-liquid-glass` — Glass adoption opportunities, toolbar improvements, blur migration247248## Skill Categories Explained249250- **Discipline skills** (no suffix) — Step-by-step workflows with pressure scenarios, TDD-tested251- **Diagnostic skills** (-diag suffix) — Systematic troubleshooting with production crisis defense252- **Reference skills** (-ref suffix) — Comprehensive API guides with WWDC examples253254## Quick Decision Trees255256**"My build is failing"**257→ Start: axiom:xcode-debugging258→ If dependency issue: axiom:build-debugging259260**"App is slow"**261→ Start: axiom:performance-profiling (decision trees)262→ If SwiftUI: axiom:swiftui-performance263→ If memory grows: axiom:memory-debugging264265**"Memory leak"**266→ Start: axiom:memory-debugging267→ If Objective-C blocks: axiom:objc-block-retain-cycles268269**"SwiftUI view issues"**270→ Start: axiom:swiftui-debugging271→ If performance: axiom:swiftui-performance272273**"Navigation problems"**274→ Start: axiom:swiftui-nav-diag (troubleshooting)275→ For patterns: axiom:swiftui-nav276277**"Which database?"**278→ Decision guide: axiom:sqlitedata-migration279→ Then: axiom:swiftdata, axiom:sqlitedata, or axiom:grdb280281**"iOS 26 design"**282→ Start: axiom:liquid-glass283→ Complete guide: axiom:liquid-glass-ref284285**"Code quality check"**286→ Run: `/axiom:audit-accessibility`, `/axiom:audit-concurrency`, `/axiom:audit-memory`287→ Fix issues with relevant skills288289## How Skills Work290291Axiom skills load automatically — you don't need to memorize names or commands.292293**Automatic triggering** (most common): Just describe your problem naturally. Claude detects which skill applies and loads it.294- "My SwiftData CloudKit sync isn't working" → loads `cloud-sync-diag`295- "I'm getting Sendable errors in Swift 6" → loads `swift-concurrency`296297**Explicit invocation**: If you know the skill name, invoke it directly:298- `$axiom-swift-concurrency`299- `$axiom-liquid-glass`300301**Audit commands**: Run automated scans with slash commands:302- `/axiom:audit-memory` — scans for memory leak patterns303- `/axiom:audit-concurrency` — scans for Swift 6 violations304305**Key insight**: You don't need to know skill names. Describe what you're working on and Axiom routes to the right skill automatically.306307## Tips308309- **Describe your problem** — Claude will suggest the right skill310- **Run audits first** — Quick wins with automated scans311- **Start with diagnostic skills** — When troubleshooting specific issues312- **Use reference skills** — When implementing new features313- **All skills are searchable** — Just describe what you need314315---316317**Total**: 50 skills, 12 audit commands, covering the complete iOS development lifecycle from design to deployment