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.
npx agentmods add rules/getsentry/xcodebuildmcp-ios-template/swiftui-patternsgit clone --depth 1 https://github.com/getsentry/XcodeBuildMCP-iOS-TemplateWhat 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.
| Model | Per session | Once 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 |
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.
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:
-
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 } } -
Use Environment Appropriately
- App-wide services: Router, Theme, CurrentAccount, Client, etc. - use
@Environment - Feature-specific services: Timeline services, single-view logic - use
letproperties 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()
- App-wide services: Router, Theme, CurrentAccount, Client, etc. - use
-
Local State Management
- Use
@Statefor view-specific state - Use
enumfor view states (loading, loaded, error) - Use
.task(id:)and.onChange(of:)for side effects - Pass state between views using
@Binding
- Use
-
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
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.
- 2d ago First seen · 263 lines · 46 tokens per session scan A a3a2aa2e167a
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.
Other cursor rules, from other repositories
errors
Please don't fix any code errors unless reported by XcodeBuildMCP server tool responses.
cursorrules
Kortix is a React Native + Expo app built with TypeScript, NativeWind (Tailwind CSS), and a custom design system.
git-commit-attribution
Git commits must use the human developer identity only; never Cursor Agent co-authorship.
android-viewmodel
Android ViewModel conventions — StateFlow, repository abstraction, coroutines, no LiveData.
project-structure
Cursor rule "project-structure" from HeeGyeong/ComposeSample, covering project structure guide, layer structure, modularization rules, dependency rules and resource management.
cursorrules
ROLE: Android Development Expert EXPERIENCELEVEL: Advanced (10+ years) SPECIALTIES.