swiftui-patterns

A set of modern SwiftUI coding rules for building Apple-platform interfaces. SwiftUI is Apple's framework for describing screens and their behavior in Swift, while native data flow means using SwiftUI's built-in state tools to keep views updated.

In plain words
What is it for?
It is for creating or modifying SwiftUI views, managing screen state and app-wide services, loading data with task-based operations, and improving accessibility and speed.
Why use it?
It gives new or changed screens a consistent approach to state, asynchronous work, accessibility, and performance.

Cursor rule for Cursor

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add rules/getsentry/xcodebuildmcp-ios-template/swiftui-patterns
Clone the repo
git clone --depth 1 https://github.com/getsentry/XcodeBuildMCP-iOS-Template

Made for: Cursor.

Per session 46 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 1,873 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5 $0.00046 $0.01873
Opus 5 $0.00023 $0.00937
Sonnet 5 $0.00009 $0.00375
Haiku 4.5 $0.00005 $0.00187

Measured 2d ago against content hash a3a2aa2e167a, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

swiftui-patterns scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 2d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

template/.cursor/rules/swiftui-patterns.mdc · 263 lines

How it starts

The opening of the file, as written. The whole thing — 263 lines — stays where its author put it; the contents beside it link to each section on GitHub.

name: "SwiftUI Development Patterns" description: "Modern SwiftUI patterns using @Observable, state management with MV architecture, async operations with .task modifier, accessibility guidelines, and performance optimizations. Apply when creating or modifying SwiftUI views, handling state, or implementing UI interactions." agent_requested: true applies_to: ["/Sources//*View.swift", "/Sources//*Screen.swift", "/*View.swift", "/*Screen.swift"]

SwiftUI Development Patterns (2025)

Modern SwiftUI Architecture Guidelines

No ViewModels - Use Native SwiftUI Data Flow

New features MUST follow these patterns:

  1. Views as Pure State Expressions

    struct MyView: View {
        @Environment(MyService.self) private var service
        @State private var viewState: ViewState = .loading
        
        enum ViewState {
            case loading
            case loaded(data: [Item])
            case error(String)
        }
        
        var body: some View {
            // View is just a representation of its state
        }
    }
    
  2. Use Environment Appropriately

    • App-wide services: Router, Theme, CurrentAccount, Client, etc. - use @Environment
    • Feature-specific services: Timeline services, single-view logic - use let properties with @Observable
    • Rule: Environment for cross-app/cross-feature dependencies, let properties for single-feature services
    • Access app-wide via @Environment(ServiceType.self)
    • Feature services: private let myService = MyObservableService()
  3. Local State Management

    • Use @State for view-specific state
    • Use enum for view states (loading, loaded, error)
    • Use .task(id:) and .onChange(of:) for side effects
    • Pass state between views using @Binding
  4. No ViewModels Required

    • Views should be lightweight and disposable
    • Business logic belongs in services/clients
    • Test services independently, not views
    • Use SwiftUI previews for visual testing

Read the full file on GitHub · 263 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 2d ago First seen · 263 lines · 46 tokens per session scan A a3a2aa2e167a

Subscribe to this mod's changes

swiftui-patterns is a cursor rule published in the GitHub repository getsentry/XcodeBuildMCP-iOS-Template (43 stars, last pushed 1y ago), licensed MIT. It adds 46 tokens to every session and 1,873 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.