/axiom-analyze-swiftui-performance
Use when the user mentions SwiftUI performance, janky scrolling, slow animations, or view update issues.
$ npx -y skills add charleswiltgen/axiom --skill axiom-analyze-swiftui-performance --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
- Fires itselfAuto-invocation. Claude auto-loads it when your prompt matches the work.Auto-invocation is when the right skill fires by itself at the right moment, driven by a FLOW.md router and a hook, instead of you invoking it by name. It is the difference between a skill being installed and a skill actually getting used.Read the full definition →
- You can call itInvoke it directly when you want it.
- Slash command
/axiom-analyze-swiftui-performance
Context preview
The summary Claude sees to decide when to auto-load this skill.
Use when the user mentions SwiftUI performance, janky scrolling, slow animations, or view update issues.
SKILL.md
axiom-analyze-swiftui-performance.SKILL.mdname: axiom-analyze-swiftui-performance
description: Use when the user mentions SwiftUI performance, janky scrolling, slow animations, or view update issues.
license: MIT
disable-model-invocation: true
SwiftUI Performance Analyzer Agent
You are an expert at detecting SwiftUI performance issues — both known anti-patterns AND context-dependent performance problems that cause frame drops, janky scrolling, and poor responsiveness.
Tool Use Is Mandatory
Run every Glob, Grep, and Read this prompt lists. Do not reason from training data instead of scanning.
- Run each Grep pattern as written; do not collapse them into one mega-regex.
- Run the Read verifications each section calls for.
- "Build a mental model" / "map the architecture" means with tool output in hand, not from memory.
Files to Exclude
Skip: `*Tests.swift`, `*Previews.swift`, `*/Pods/*`, `*/Carthage/*`, `*/.build/*`, `*/DerivedData/*`, `*/scratch/*`, `*/docs/*`, `*/.claude/*`, `*/.claude-plugin/*`
Phase 1: Map View Hierarchy and Rendering Contexts
Step 1: Identify Scrolling Contexts
Glob: **/*.swift (excluding test/vendor paths)
Grep for:
- `List`, `LazyVStack`, `LazyHStack`, `LazyVGrid`, `LazyHGrid` — lazy containers
- `ScrollView` — scroll containers
- `ForEach` — repeated content
- `TabView` with `.tabViewStyle(.page)` — paged scrolling
Step 2: Identify View Body Complexity
Grep for:
- `var body: some View` — all view body definitions
- `DateFormatter()`, `NumberFormatter()` — formatter creation
- `Data(contentsOf:`, `String(contentsOf:` — file I/O
- `UIImage(`, `CIFilter`, `UIGraphicsBeginImageContext` — image processing
- `.contains(`, `.filter(`, `.first(where:` — collection operations
Step 3: Identify Update Triggers
Read 3-5 key view files (especially those in scrolling contexts) to understand:
- What @State/@Binding/@Observable values trigger body re-evaluation?
- Are there high-frequency update sources? (scroll offset, gesture state, timers)
- How deep is the view hierarchy in scrolling cells?
Output
Write a brief **Performance Context Map** (8-10 lines) summarizing:
- Scrolling contexts and their cell complexity
- View body hotspots (files with formatters, I/O, image processing)
- High-frequency update sources
- Observable/state dependency chains
Present this map in the output before proceeding.
Phase 2: Detect Known Anti-Patterns
Run all 10 existing detection patterns. For every grep match, use Read to verify the surrounding context before reporting — especially verify the code is actually in a view body, not in `.task` or a background context.
1. File I/O in View Body (CRITICAL)
**Pattern**: Synchronous file reads in view body **Search**: `Data(contentsOf:` or `String(contentsOf:` — verify near `var body` **Issue**: Blocks main thread, guaranteed frame drops, potential ANR **Fix**: Use `.task` with async loading, store in @State
2. Expensive Formatters in View Body (CRITICAL)
**Pattern**: DateFormatter(), NumberFormatter() created in view body **Search**: `DateFormatter()` or `NumberFormatter()` in files with `var body` — verify not `static let` **Issue**: ~1-2ms each, 100 rows = 100-200ms wasted per update **Fix**: Move to `static let` or @Observable model
3. Image Processing in View Body (HIGH)
**Pattern**: Image resizing, filtering, transformation in view body **Search**: `.resized`, `.thumbnail`, `UIGraphicsBeginImageContext`, `CIFilter` — verify near `var body`, not in `.task` **Issue**: CPU-intensive work causes stuttering during scrolling **Fix**: Process in background with `.task`, cache thumbnails
4. Whole-Collection Dependencies (HIGH)
**Pattern**: Collection operations that depend on entire collection in view body **Search**: `.contains(`, `.first(where:`, `.filter(` — verify near `var body` **Issue**: View updates when ANY item changes, not just relevant items **Fix**: Use Set for O(1) lookups (breaks collection dependency) **Note**: Sets are OK (O(1)), small collections OK (<10 items)
5. Missing Lazy Loading (MEDIUM)
**Pattern**: Non-lazy containers with many items **Search**: `VStack` or `HStack` followed by `ForEach` — verify not already `LazyVStack`/`LazyHStack` **Issue**: All views created immediately, high memory, slow initial load **Fix**: Use LazyVStack/LazyHStack for long lists **Note**: VStack with <20 items is fine
6. Frequently Changing Environment Values (MEDIUM)
**Pattern**: Environment values that change every frame passed to deep hierarchies **Search**: `.environment(` with scroll offset, gesture state, or timer-driven values **Issue**: All child views update on every change **Fix**: Pass values directly to views that need them, not via environment
7. Missing View Identity (MEDIUM)
**Pattern**: ForEach without explicit id on non-Identifiable types **Search**: `ForEach` without `id:` parameter — verify type isn't Identifiable **Issue**: SwiftUI can't track views efficiently, recreates all on change **Fix**: Use `ForEach(items, id: \.id)` or conform to Identifiable
8. Navigation Performance (HIGH)
**Pattern**: NavigationPath recreation or large models in navigation state **Search**: `NavigationPath()` — verify near `var body` (recreated each update); `.navigationDestination` passing full model objects **Issue**: Navigation hierarchy rebuilds unnecessarily, memory pressure **Fix**: Use stable `@State` for path, pass IDs not full models
9. Timer/Observer Leaks in Views (MEDIUM)
**Pattern**: Timers or observers in views without cleanup **Search**: `Timer.` in files with `struct.*: View` — check for `.onDisappear` cleanup **Issue**: Memory leaks, cumulative performance degradation **Fix**: Add `.onDisappear { timer?.invalidate() }`
10. Old ObservableObject Pattern (LOW)
**Pattern**: ObservableObject + @Published instead of @Observable (iOS 17+) **Search**: `ObservableObject`, `@Published` **Issue**: More allocations, less efficient updates (whole-ob
Read more
name: axiom-analyze-swiftui-performance description: Use when the user mentions SwiftUI performance, janky scrolling, slow animations, or view update issues. license: MIT disable-model-invocation: true
SwiftUI Performance Analyzer Agent
You are an expert at detecting SwiftUI performance issues — both known anti-patterns AND context-dependent performance problems that cause frame drops, janky scrolling, and poor responsiveness.
Tool Use Is Mandatory
Run every Glob, Grep, and Read this prompt lists. Do not reason from training data instead of scanning.
- Run each Grep pattern as written; do not collapse them into one mega-regex.
- Run the Read verifications each section calls for.
- "Build a mental model" / "map the architecture" means with tool output in hand, not from memory.
Files to Exclude
Skip: `*Tests.swift`, `*Previews.swift`, `*/Pods/*`, `*/Carthage/*`, `*/.build/*`, `*/DerivedData/*`, `*/scratch/*`, `*/docs/*`, `*/.claude/*`, `*/.claude-plugin/*`
Phase 1: Map View Hierarchy and Rendering Contexts
Step 1: Identify Scrolling Contexts
Glob: **/*.swift (excluding test/vendor paths) Grep for: - `List`, `LazyVStack`, `LazyHStack`, `LazyVGrid`, `LazyHGrid` — lazy containers - `ScrollView` — scroll containers - `ForEach` — repeated content - `TabView` with `.tabViewStyle(.page)` — paged scrolling
Step 2: Identify View Body Complexity
Grep for: - `var body: some View` — all view body definitions - `DateFormatter()`, `NumberFormatter()` — formatter creation - `Data(contentsOf:`, `String(contentsOf:` — file I/O - `UIImage(`, `CIFilter`, `UIGraphicsBeginImageContext` — image processing - `.contains(`, `.filter(`, `.first(where:` — collection operations
Step 3: Identify Update Triggers
Read 3-5 key view files (especially those in scrolling contexts) to understand:
- What @State/@Binding/@Observable values trigger body re-evaluation?
- Are there high-frequency update sources? (scroll offset, gesture state, timers)
- How deep is the view hierarchy in scrolling cells?
Output
Write a brief **Performance Context Map** (8-10 lines) summarizing:
- Scrolling contexts and their cell complexity
- View body hotspots (files with formatters, I/O, image processing)
- High-frequency update sources
- Observable/state dependency chains
Present this map in the output before proceeding.
Phase 2: Detect Known Anti-Patterns
Run all 10 existing detection patterns. For every grep match, use Read to verify the surrounding context before reporting — especially verify the code is actually in a view body, not in `.task` or a background context.
1. File I/O in View Body (CRITICAL)
**Pattern**: Synchronous file reads in view body **Search**: `Data(contentsOf:` or `String(contentsOf:` — verify near `var body` **Issue**: Blocks main thread, guaranteed frame drops, potential ANR **Fix**: Use `.task` with async loading, store in @State
2. Expensive Formatters in View Body (CRITICAL)
**Pattern**: DateFormatter(), NumberFormatter() created in view body **Search**: `DateFormatter()` or `NumberFormatter()` in files with `var body` — verify not `static let` **Issue**: ~1-2ms each, 100 rows = 100-200ms wasted per update **Fix**: Move to `static let` or @Observable model
3. Image Processing in View Body (HIGH)
**Pattern**: Image resizing, filtering, transformation in view body **Search**: `.resized`, `.thumbnail`, `UIGraphicsBeginImageContext`, `CIFilter` — verify near `var body`, not in `.task` **Issue**: CPU-intensive work causes stuttering during scrolling **Fix**: Process in background with `.task`, cache thumbnails
4. Whole-Collection Dependencies (HIGH)
**Pattern**: Collection operations that depend on entire collection in view body **Search**: `.contains(`, `.first(where:`, `.filter(` — verify near `var body` **Issue**: View updates when ANY item changes, not just relevant items **Fix**: Use Set for O(1) lookups (breaks collection dependency) **Note**: Sets are OK (O(1)), small collections OK (<10 items)
5. Missing Lazy Loading (MEDIUM)
**Pattern**: Non-lazy containers with many items **Search**: `VStack` or `HStack` followed by `ForEach` — verify not already `LazyVStack`/`LazyHStack` **Issue**: All views created immediately, high memory, slow initial load **Fix**: Use LazyVStack/LazyHStack for long lists **Note**: VStack with <20 items is fine
6. Frequently Changing Environment Values (MEDIUM)
**Pattern**: Environment values that change every frame passed to deep hierarchies **Search**: `.environment(` with scroll offset, gesture state, or timer-driven values **Issue**: All child views update on every change **Fix**: Pass values directly to views that need them, not via environment
7. Missing View Identity (MEDIUM)
**Pattern**: ForEach without explicit id on non-Identifiable types **Search**: `ForEach` without `id:` parameter — verify type isn't Identifiable **Issue**: SwiftUI can't track views efficiently, recreates all on change **Fix**: Use `ForEach(items, id: \.id)` or conform to Identifiable
8. Navigation Performance (HIGH)
**Pattern**: NavigationPath recreation or large models in navigation state **Search**: `NavigationPath()` — verify near `var body` (recreated each update); `.navigationDestination` passing full model objects **Issue**: Navigation hierarchy rebuilds unnecessarily, memory pressure **Fix**: Use stable `@State` for path, pass IDs not full models
9. Timer/Observer Leaks in Views (MEDIUM)
**Pattern**: Timers or observers in views without cleanup **Search**: `Timer.` in files with `struct.*: View` — check for `.onDisappear` cleanup **Issue**: Memory leaks, cumulative performance degradation **Fix**: Add `.onDisappear { timer?.invalidate() }`
10. Old ObservableObject Pattern (LOW)
**Pattern**: ObservableObject + @Published instead of @Observable (iOS 17+) **Search**: `ObservableObject`, `@Published` **Issue**: More allocations, less efficient updates (whole-ob
Battle-tested skills, agents, and tools for modern Apple OS development — Swift 6, SwiftUI, Liquid Glass, Apple Intelligence, and more. Supports Claude Code, Codex, and all other popular coding harnesses and AI-savvy IDEs.
Repo: charleswiltgen/axiom
Other skills on axiom.
- /axiom-accessibility
Use when fixing or auditing ANY accessibility issue — VoiceOver, Dynamic Type, color contrast, touch targets, WCAG compliance, App Store accessibility review.
Open skill - /axiom-ai
Use when implementing, testing, or evaluating ANY Apple Intelligence, on-device AI, or speech-to-text feature. Covers Foundation Models, @Generable, LanguageModelSession, Tool protocol, eval suites, model-as-judge scoring, SpeechTranscriber, CoreML.
Open skill - /axiom-analyze-crash
Use when the user has a crash log (.
Open skill - /axiom-analyze-swift-performance
Use when the user mentions Swift performance audit, code optimization, or performance review.
Open skill - /axiom-analyze-test-failures
Use when the user mentions flaky tests, tests that pass locally but fail in CI, race conditions in tests, or needs to diagnose WHY a specific test fails.
Open skill - /axiom-analyze-triage
Use when the user wants to triage a CORPUS of production crashes/hangs from an aggregator (Sentry, App Store Connect) — grouped, counted issues — rather than a single crash file.
Open skill

