PluginBench
Skill
Review
Audit score 70

swiftui-pro

twostraws/swiftui-agent-skill

Comprehensively reviews SwiftUI code for best practices, modern APIs, and performance.

What is swiftui-pro?

A code review skill that analyzes SwiftUI projects against best practices across deprecated APIs, data flow, navigation, accessibility, and performance. Use when reading, writing, or reviewing SwiftUI code to catch issues before they compound.

  • Detects deprecated API usage and suggests modern replacements
  • Validates data flow configuration and property wrapper patterns
  • Reviews navigation implementation for correctness and performance
  • Checks accessibility compliance including Dynamic Type, VoiceOver, and Reduce Motion
  • Ensures code follows Apple's Human Interface Guidelines
  • Identifies performance bottlenecks and optimization opportunities

How to install swiftui-pro

npx skills add https://github.com/twostraws/swiftui-agent-skill --skill swiftui-pro
Claude Code
Cursor
Windsurf
Cline

How to use swiftui-pro

  1. 1.Provide the SwiftUI code file(s) you want reviewed
  2. 2.Specify if you want a full review or focus on specific areas (e.g., accessibility, performance)
  3. 3.The skill will check against reference guides for deprecated APIs, data flow patterns, navigation, design, accessibility, performance, and code hygiene
  4. 4.Review the organized findings by file with before/after code examples
  5. 5.Prioritize fixes based on the impact summary provided

Use cases

Good for
  • Review a SwiftUI view file before committing to catch deprecated APIs and accessibility issues
  • Analyze data flow in a complex feature to ensure proper use of @State, @Binding, and @Observable
  • Check navigation patterns in an app to ensure NavigationStack/NavigationSplitView best practices
  • Validate accessibility compliance across an entire app before release
  • Optimize performance-critical views by identifying unnecessary redraws and inefficient patterns
Who it's for
  • SwiftUI developers building iOS 26+ apps
  • Code reviewers ensuring team consistency and best practices
  • Developers migrating from UIKit or older SwiftUI patterns
  • Teams targeting Swift 6.2 and modern concurrency

swiftui-pro FAQ

What Swift and iOS versions does this skill target?

Swift 6.2 or later with iOS 26 as the default deployment target. The skill focuses on modern SwiftUI patterns and avoids UIKit unless explicitly requested.

Does this skill suggest third-party frameworks?

No. The skill avoids introducing third-party frameworks without asking first, keeping reviews focused on native SwiftUI solutions.

Can I request a partial review of specific areas?

Yes. You can ask to focus on specific areas like accessibility, performance, or data flow, and the skill will load only the relevant reference guides.

What output format should I expect?

Findings are organized by file with the rule violated, before/after code examples, and a prioritized summary of the most impactful changes to make first.

Does this skill check for code style and project structure?

Yes. It validates Swift file organization (separate files for different types), consistent project structure organized by app features, and general code hygiene.

Full instructions (SKILL.md)

Source of truth, from twostraws/swiftui-agent-skill.


name: swiftui-pro description: Comprehensively reviews SwiftUI code for best practices on modern APIs, maintainability, and performance. Use when reading, writing, or reviewing SwiftUI projects. license: MIT metadata: author: Paul Hudson version: "1.1"

Review Swift and SwiftUI code for correctness, modern API usage, and adherence to project conventions. Report only genuine problems - do not nitpick or invent issues.

Review process:

  1. Check for deprecated API using references/api.md.
  2. Check that views, modifiers, and animations have been written optimally using references/views.md.
  3. Validate that data flow is configured correctly using references/data.md.
  4. Ensure navigation is updated and performant using references/navigation.md.
  5. Ensure the code uses designs that are accessible and compliant with Apple’s Human Interface Guidelines using references/design.md.
  6. Validate accessibility compliance including Dynamic Type, VoiceOver, and Reduce Motion using references/accessibility.md.
  7. Ensure the code is able to run efficiently using references/performance.md.
  8. Quick validation of Swift code using references/swift.md.
  9. Final code hygiene check using references/hygiene.md.

If doing a partial review, load only the relevant reference files.

Core Instructions

  • iOS 26 exists, and is the default deployment target for new apps.
  • Target Swift 6.2 or later, using modern Swift concurrency.
  • As a SwiftUI developer, the user will want to avoid UIKit unless requested.
  • Do not introduce third-party frameworks without asking first.
  • Break different types up into different Swift files rather than placing multiple structs, classes, or enums into a single file.
  • Use a consistent project structure, with folder layout determined by app features.

Output Format

Organize findings by file. For each issue:

  1. State the file and relevant line(s).
  2. Name the rule being violated (e.g., "Use foregroundStyle() instead of foregroundColor()").
  3. Show a brief before/after code fix.

Skip files with no issues. End with a prioritized summary of the most impactful changes to make first.

Example output:

ContentView.swift

Line 12: Use foregroundStyle() instead of foregroundColor().

// Before
Text("Hello").foregroundColor(.red)

// After
Text("Hello").foregroundStyle(.red)

Line 24: Icon-only button is bad for VoiceOver - add a text label.

// Before
Button(action: addUser) {
    Image(systemName: "plus")
}

// After
Button("Add User", systemImage: "plus", action: addUser)

Line 31: Avoid Binding(get:set:) in view body - use @State with onChange() instead.

// Before
TextField("Username", text: Binding(
    get: { model.username },
    set: { model.username = $0; model.save() }
))

// After
TextField("Username", text: $model.username)
    .onChange(of: model.username) {
        model.save()
    }

Summary

  1. Accessibility (high): The add button on line 24 is invisible to VoiceOver.
  2. Deprecated API (medium): foregroundColor() on line 12 should be foregroundStyle().
  3. Data flow (medium): The manual binding on line 31 is fragile and harder to maintain.

End of example.

References

  • references/accessibility.md - Dynamic Type, VoiceOver, Reduce Motion, and other accessibility requirements.
  • references/api.md - updating code for modern API, and the deprecated code it replaces.
  • references/design.md - guidance for building accessible apps that meet Apple’s Human Interface Guidelines.
  • references/hygiene.md - making code compile cleanly and be maintainable in the long term.
  • references/navigation.md - navigation using NavigationStack/NavigationSplitView, plus alerts, confirmation dialogs, and sheets.
  • references/performance.md - optimizing SwiftUI code for maximum performance.
  • references/data.md - data flow, shared state, and property wrappers.
  • references/swift.md - tips on writing modern Swift code, including using Swift Concurrency effectively.
  • references/views.md - view structure, composition, and animation.