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
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 focus4---5
6# Getting Started with Axiom
7
8Welcome! This skill helps new users discover the most relevant Axiom skills for their situation.
9
10## How This Skill Works
11
121. Ask the user 2-3 targeted questions about their project
132. Provide personalized skill recommendations (3-5 skills max)
143. Show example prompts they can try immediately
154. Include a complete skill reference for browsing
16
17## Step 1: Ask Questions
18
19Use the AskUserQuestion tool to gather context:
20
21### Question 1: Current Focus
22
23```
24Question: "What brings you to Axiom today?"
25Header: "Focus"
26Options:
27- "Debugging an issue" → Prioritize diagnostic skills
28- "Optimizing performance" → Prioritize profiling skills
29- "Adding new features" → Prioritize reference skills
30- "Code review / quality check" → Prioritize audit commands
31- "Just exploring" → Show overview
32```
33
34### Question 2: Tech Stack
35
36```
37Question: "What's your primary tech stack?"
38Header: "Stack"
39Options:
40- "SwiftUI (iOS 16+)" → SwiftUI-focused skills
41- "UIKit" → UIKit-focused skills
42- "Mixed SwiftUI + UIKit" → Both
43- "Starting new project" → Best practices skills
44```
45
46### Question 3: Pain Points (Optional, Multi-Select)
47
48Only ask if "Debugging an issue" was selected:
49
50```
51Question: "Which areas are you struggling with?"
52Header: "Pain Points"
53Multi-select: true
54Options:
55- "Xcode/build issues"
56- "Memory leaks"
57- "UI/animation problems"
58- "Database/persistence"
59- "Networking"
60- "Concurrency/async"
61- "Accessibility"
62```
63
64## Step 2: Provide Personalized Recommendations
65
66Based on answers, recommend 3-5 skills using this matrix:
67
68### If "Debugging an issue"
69
70**Always recommend**: axiom:xcode-debugging (universal starting point)
71
72**Then add based on pain points**:
73- Xcode/build → xcode-debugging, axiom-build-debugging
74- Memory leaks → memory-debugging, axiom-objc-block-retain-cycles
75- UI/animation (SwiftUI) → swiftui-debugging, axiom-swiftui-performance
76- UI/animation (UIKit) → uikit-animation-debugging, axiom-auto-layout-debugging
77- Database → database-migration, axiom-sqlitedata-migration (decision guide)
78- Networking → networking, axiom-networking-diag
79- Concurrency → swift-concurrency
80- Accessibility → accessibility-diag
81
82### If "Optimizing performance"
83
84**SwiftUI stack**:
851. performance-profiling (decision trees for tools)
862. swiftui-performance (SwiftUI Instrument)
873. swiftui-debugging (view update issues)
88
89**UIKit/Mixed**:
901. performance-profiling (Instruments guide)
912. memory-debugging (leak detection)
923. uikit-animation-debugging (CAAnimation issues)
93
94### If "Adding new features"
95
96**Design decisions**:
97- hig (quick design decisions, checklists)
98- hig-ref (comprehensive HIG reference)
99
100**iOS 26+ features**:
101- liquid-glass (material design system)
102- foundation-models (on-device AI)
103- swiftui-26-ref (complete iOS 26 guide)
104
105**Navigation patterns**:
106- swiftui-nav (iOS 18+ Tab/Sidebar, deep linking)
107- swiftui-nav-ref (comprehensive API reference)
108
109**Integrations**:
110- app-intents-ref (Siri, Shortcuts, Spotlight)
111- networking (Network.framework modern patterns)
112
113**Data persistence**:
114- Ask: "Which persistence framework?" → swiftdata, axiom-sqlitedata, or grdb
115- Migration: axiom-sqlitedata-migration, axiom-realm-migration-ref
116
117### If "Code review / quality check"
118
119**Start with audit commands** (quick wins):
1201. `/axiom:audit-accessibility` — WCAG compliance
1212. `/axiom:audit-concurrency` — Swift 6 violations
1223. `/axiom:audit-memory` — Leak patterns
1234. `/axiom:audit-core-data` — Migration safety
1245. `/axiom:audit-networking` — Deprecated APIs
125
126**Then suggest**:
127- Review skills based on what audits find
128
129### If "Just exploring"
130
131Show the complete skill index (see below) and explain categories.
132
133## Step 3: Output Format
134
135After gathering answers, output:
136
137```markdown
138## Your Recommended Skills
139
140Based on your answers, here are the skills most relevant to you right now:
141
142### [Icon] [Category Name]
143**axiom:[skill-name]** — [One-line description]
144> Try: "[Example prompt they can use immediately]"
145
146[Repeat for 3-5 skills]
147
148### Quick Wins
149Run these audit commands to find issues automatically:
150- `/axiom:audit-[name]` — [What it finds]
151
152## What's Next
153
1541. **Try the example prompts above** — Copy/paste to see how skills work
1552. **Run an audit command** — Get immediate actionable insights
1563. **Describe your problem** — I'll suggest the right skill
1574. **Browse the complete index below** — Explore all 34 skills
158
159---
160
161[Include the Complete Skill Reference below]
162```
163
164## Complete Skill Reference
165
166Include this reference section in every response for browsing:
167
168### Debugging & Troubleshooting
169
170**Environment & Build Issues**
171- **xcode-debugging** — BUILD FAILED, simulator hangs, zombie processes, environment-first diagnostics
172- **build-debugging** — Dependency conflicts, CocoaPods/SPM failures, Multiple commands produce
173
174**Memory & Performance**
175- **memory-debugging** — Memory growth, retain cycles, leak diagnosis with Instruments
176- **performance-profiling** — Decision trees for Instruments (Time Profiler, Allocations, Core Data, Energy)
177- **objc-block-retain-cycles** — Objective-C block memory leaks, weak-strong pattern
178
179**UI Debugging**
180- **swiftui-debugging** — View update issues, struct mutation, binding identity, view recreation
181- **swiftui-performance** — SwiftUI Instrument (iOS 26), long view bodies, Cause & Effect Graph
182- **uikit-animation-debugging** — CAAnimation completion, spring physics, gesture+animation jank
183- **auto-layout-debugging** — Auto Layout conflicts, constraint debugging (not yet in manifest)
184
185### Concurrency & Async
186- **swift-concurrency** — Swift 6 strict concurrency, @concurrent, actor isolation, Sendable, data races
187
188### UI & Design (iOS 26+)
189
190**Liquid Glass (Material Design)**
191- **liquid-glass** — Implementation, Regular vs Clear variants, design review defense
192- **liquid-glass-ref** — Complete app-wide adoption guide (icons, controls, navigation, windows)
193
194**Layout & Navigation**
195- **swiftui-layout** — ViewThatFits vs AnyLayout vs onGeometryChange, decision trees, iOS 26 free-form windows
196- **swiftui-layout-ref** — Complete layout API reference
197- **swiftui-nav** — NavigationStack vs NavigationSplitView, deep links, coordinator patterns, iOS 18+ Tab/Sidebar
198- **swiftui-nav-ref** — Comprehensive navigation API reference
199- **swiftui-nav-diag** — Navigation not responding, unexpected pops, deep link failures, state loss
200
201### Testing
202- **ui-testing** — Recording UI Automation (Xcode 26), condition-based waiting, accessibility-first patterns
203
204### Persistence
205
206**Frameworks**
207- **swiftdata** — @Model, @Query, @Relationship, CloudKit, iOS 26 features, Swift 6 concurrency
208- **sqlitedata** — Point-Free SQLiteData, @Table, FTS5, CTEs, JSON aggregation, CloudKit sync
209- **grdb** — Raw SQL, complex joins, ValueObservation, DatabaseMigrator, performance
210- **database-migration** — Safe schema evolution for SQLite/GRDB, additive migrations, prevents data loss
211
212**Migration Guides**
213- **sqlitedata-migration** — Decision guide, pattern equivalents, performance benchmarks
214- **realm-migration-ref** — Realm → SwiftData migration (Realm Device Sync sunset Sept 2025)
215
216### Networking
217- **networking** — Network.framework (iOS 12-26), NetworkConnection (iOS 26), structured concurrency
218- **networking-diag** — Connection timeouts, TLS failures, data not arriving, performance issues
219- **network-framework-ref** — Complete API reference, TLV framing, Coder protocol, Wi-Fi Aware
220
221### Apple Intelligence (iOS 26+)
222- **foundation-models** — On-device AI, LanguageModelSession, @Generable, streaming, tool calling
223- **foundation-models-diag** — Context exceeded, guardrails, slow generation, availability issues
224- **foundation-models-ref** — Complete API reference, all 26 WWDC examples
225
226### Design & UI Guidelines
227- **hig** — Quick design decisions, color/background/typography choices, HIG compliance checklists
228- **hig-ref** — Comprehensive Human Interface Guidelines reference with code examples
229
230### Integrations
231- **app-intents-ref** — Siri, Apple Intelligence, Shortcuts, Spotlight (iOS 16+)
232- **swiftui-26-ref** — iOS 26 SwiftUI features, @Animatable, 3D layout, WebView, AttributedString
233- **avfoundation-ref** — Audio APIs, bit-perfect DAC, iOS 26 spatial audio, ASAF/APAC
234
235### Diagnostics (Systematic Troubleshooting)
236- **accessibility-diag** — VoiceOver, Dynamic Type, color contrast, WCAG compliance, App Store defense
237- **core-data-diag** — Schema migration crashes, thread-confinement, N+1 queries
238
239### Audit Commands (Quick Scans)
240- `/axiom:audit-accessibility` — VoiceOver labels, Dynamic Type, contrast, touch targets
241- `/axiom:audit-concurrency` — Swift 6 violations, unsafe tasks, missing @MainActor
242- `/axiom:audit-memory` — Timer leaks, observer leaks, closure captures, delegate cycles
243- `/axiom:audit-core-data` — Migration risks, thread violations, N+1 queries
244- `/axiom:audit-networking` — Deprecated APIs (SCNetworkReachability, CFSocket), anti-patterns
245- `/axiom:audit-liquid-glass` — Glass adoption opportunities, toolbar improvements, blur migration
246
247## Skill Categories Explained
248
249- **Discipline skills** (no suffix) — Step-by-step workflows with pressure scenarios, TDD-tested
250- **Diagnostic skills** (-diag suffix) — Systematic troubleshooting with production crisis defense
251- **Reference skills** (-ref suffix) — Comprehensive API guides with WWDC examples
252
253## Quick Decision Trees
254
255**"My build is failing"**
256→ Start: axiom:xcode-debugging
257→ If dependency issue: axiom:build-debugging
258
259**"App is slow"**
260→ Start: axiom:performance-profiling (decision trees)
261→ If SwiftUI: axiom:swiftui-performance
262→ If memory grows: axiom:memory-debugging
263
264**"Memory leak"**
265→ Start: axiom:memory-debugging
266→ If Objective-C blocks: axiom:objc-block-retain-cycles
267
268**"SwiftUI view issues"**
269→ Start: axiom:swiftui-debugging
270→ If performance: axiom:swiftui-performance
271
272**"Navigation problems"**
273→ Start: axiom:swiftui-nav-diag (troubleshooting)
274→ For patterns: axiom:swiftui-nav
275
276**"Which database?"**
277→ Decision guide: axiom:sqlitedata-migration
278→ Then: axiom:swiftdata, axiom:sqlitedata, or axiom:grdb
279
280**"iOS 26 design"**
281→ Start: axiom:liquid-glass
282→ Complete guide: axiom:liquid-glass-ref
283
284**"Code quality check"**
285→ Run: `/axiom:audit-accessibility`, `/axiom:audit-concurrency`, `/axiom:audit-memory`
286→ Fix issues with relevant skills
287
288## Tips
289
290- **Describe your problem** — Claude will suggest the right skill
291- **Run audits first** — Quick wins with automated scans
292- **Start with diagnostic skills** — When troubleshooting specific issues
293- **Use reference skills** — When implementing new features
294- **All skills are searchable** — Just describe what you need
295
296---
297
298**Total**: 50 skills, 12 audit commands, covering the complete iOS development lifecycle from design to deployment