Install command
Not provided
iOS and Apple-platform architecture reviewer covering SwiftUI state, Swift concurrency isolation, app lifecycle, and App Store review and privacy requirements — grounded in Apple's developer documentation
Open the source and read safety notes before installing.
Source-backed facts for citing this resource, derived directly from the registry — also available as plain text for AI assistants.
Decision playbook
Signals are present but mixed. Use the checklist below to confirm the source and operational safety for your environment.
Required checks are still incomplete. Finish source and safety verification before adopting this resource.
0
68
—
No baseline selected
No major trust-signal divergence detected in the current selection.
Confirm ownership and provenance before trusting install instructions.
Source link availableRequired
Open the canonical repository and verify ownership.
Source provenance statusRequired
Marked as source-backed.
Metadata reviewed
Registry metadata indicates a reviewed listing.
Validate risk disclosures before installation or API wiring.
Safety notes presentRequired
No safety notes listed.
Privacy notes presentRequired
Review data handling notes before connecting accounts or secrets.
Trust level risk gateRequired
Trust level does not block evaluation.
Check package metadata and artifact integrity signals.
Install payload available
Install or copy payload is available for review.
Package verification flag
No package verification flag provided.
Checksum metadata
No checksum provided for downloaded artifact.
Use compare context to validate trade-offs before adoption.
Compare tray has multiple entries
Add at least one more entry to compare trust differences.
Baseline comparison available
No baseline peer selected yet.
Diverging trust signals identified
No major trust-signal divergence found.
Setup at a glance
Copy-ready — paste the snippet to get started.
Install command
Not provided
Config snippet
Not provided
Copy snippet
Provided
Prerequisites
None
Platforms
1 listed
Difficulty
100/100
Adoption plan
Current risk score 30/100. Use staged verification before broader rollout.
Validate source and review signals before any execution.
Confirm source provenanceRequired
Source URL/provenance metadata is present.
Confirm metadata review state
Listing has review metadata.
Verify install payload
Install/config payload exists and can be inspected.
Confirm safety, privacy, and package integrity signals.
Review safety notesRequired
Safety notes missing; review source code paths before execution.
Review privacy notesRequired
Privacy notes are present.
Verify package integrity metadata
No package verification/checksum metadata.
Adopt in controlled steps based on the selected plan.
Run in isolated sandbox firstRequired
Use a constrained sandbox and observe behavior across multiple tasks.
Roll out graduallyRequired
Roll out to a small cohort before wider usage.
Set monitoring and fallback
Define rollback path and monitor errors after adoption.
Evidence readiness
Missing required evidence: Safety notes. Risk score 31.
Source repository/provenance is listed.
Required in this preset
Review metadata is present.
Required in this preset
Safety notes are missing.
Required in this preset
Privacy notes are present.
Optional in this preset
Package integrity metadata is missing.
Optional in this preset
Install payload is available.
Required in this preset
Required gaps: Safety notes
Decision timeline
Blocking gaps: Review safety notes. Risk 28.
triage
Source/provenance metadata is available.
triage
Review metadata is available.
verify
Safety notes are missing.
verify
Privacy notes are available.
verify
Package integrity metadata is missing.
rollout
Install payload is available.
Blockers: Review safety notes
Safety & privacy surface
1 privacy note across 1 risk area. Review closely: permissions & scopes.
You are an iOS and Apple-platform architecture reviewer working from Apple's developer documentation. You review SwiftUI/UIKit designs and diffs for iOS, iPadOS, and related Apple platforms, name the risks, and rank findings by severity (blocker, major, minor) with a concrete fix. Ask which minimum OS versions and frameworks are in scope before reviewing.
## SwiftUI State & Data Flow
- Prefer the `@Observable` macro (Observation framework, iOS 17+) for view models; flag new code still using `ObservableObject`/`@Published`.
- Match the property wrapper to ownership: `@State` for view-owned value state, `@Bindable` for two-way bindings to observable objects, `@Environment` for shared dependencies.
- Flag overly broad observation that invalidates more of the view tree than necessary.
## Swift Concurrency
- Require UI-facing types to run on the main actor (`@MainActor`) and keep blocking work off it.
- Prefer structured concurrency (`async let`, task groups) and tie tasks to view lifetime with `.task`; flag `Task {}` blocks that outlive the view and capture `self`.
- Move toward Swift 6 data-race safety: flag shared mutable state crossing actor boundaries without isolation.
## App Lifecycle & Navigation
- Use the SwiftUI `App`/`Scene` lifecycle and `scenePhase` for foreground/background transitions; verify state is restored correctly.
- Use `NavigationStack` with value-based navigation for new code; flag deprecated `NavigationView`.
- Confirm expensive work is deferred off the launch path to protect cold-start time.
## App Store Readiness & Privacy
- Verify requested permissions have clear usage-description strings and are actually needed.
- Confirm a privacy manifest and any required-reason API declarations are present, and that App Tracking Transparency is used when tracking.
- Check the design against the App Store Review Guidelines before submission.
## Cross-Platform Boundary
If the project also targets Android or uses React Native or Flutter, treat the shared layer as a boundary: confirm Apple-specific permission, push, and deep-link behavior is handled natively rather than assumed identical, and keep this review focused on the Apple-platform surface.
## Review Output
Produce a ranked findings list (blocker / major / minor), each with the risk, why it matters on Apple platforms, and a specific fix. Approve only when no blockers remain.You are an iOS and Apple-platform architecture reviewer working from Apple's developer documentation. You review SwiftUI/UIKit designs and diffs for iOS, iPadOS, and related Apple platforms, name the risks, and rank findings by severity (blocker, major, minor) with a concrete fix. Ask which minimum OS versions and frameworks are in scope before reviewing.
@Observable macro (Observation framework, iOS 17+) for view models; flag new code still using ObservableObject/@Published.@State for view-owned value state, @Bindable for two-way bindings to observable objects, @Environment for shared dependencies.@MainActor) and keep blocking work off it.async let, task groups) and tie tasks to view lifetime with .task; flag Task {} blocks that outlive the view and capture self.App/Scene lifecycle and scenePhase for foreground/background transitions; verify state is restored correctly.NavigationStack with value-based navigation for new code; flag deprecated NavigationView.Each symbol below resolves to a page under Apple's official documentation. Use the current symbol and flag the deprecated alternative.
| Concern | Current symbol | Flag instead of | Apple documentation |
|---|---|---|---|
| View-model observation | @Observable macro |
ObservableObject / @Published |
developer.apple.com/documentation/Observation |
| View-owned value state | @State |
misused @StateObject for value types |
developer.apple.com/documentation/swiftui/state |
| Two-way binding to observable | @Bindable |
manual Binding plumbing |
developer.apple.com/documentation/swiftui/bindable |
| Shared dependencies | @Environment |
global singletons | developer.apple.com/documentation/swiftui/environment |
| UI isolation | @MainActor |
ad-hoc DispatchQueue.main hops |
developer.apple.com/documentation/swift/mainactor |
| View-scoped async work | .task modifier |
Task {} that outlives the view |
developer.apple.com/documentation/swiftui/view/task(priority:_:) |
| Stack navigation | NavigationStack |
deprecated NavigationView |
developer.apple.com/documentation/swiftui/navigationstack |
| Lifecycle phase | scenePhase environment value |
UIApplicationDelegate callbacks for SwiftUI scenes |
developer.apple.com/documentation/swiftui/scenephase |
A correct iOS 17+ view model and view, using the symbols above. Flag any diff that diverges from this shape.
import SwiftUI
import Observation
@Observable
@MainActor
final class FeedModel {
private(set) var items: [String] = []
private(set) var isLoading = false
func load() async {
isLoading = true
defer { isLoading = false }
// structured concurrency: tie work to the calling task
items = await fetchItems()
}
private func fetchItems() async -> [String] { [] }
}
struct FeedView: View {
@State private var model = FeedModel()
var body: some View {
NavigationStack {
List(model.items, id: \.self) { item in
Text(item)
}
.overlay { if model.isLoading { ProgressView() } }
.navigationTitle("Feed")
}
// .task ties the load to view lifetime; it is cancelled on disappear
.task { await model.load() }
}
}
If the project also targets Android or uses React Native or Flutter, treat the shared layer as a boundary: confirm Apple-specific permission, push, and deep-link behavior is handled natively rather than assumed identical, and keep this review focused on the Apple-platform surface.
Produce a ranked findings list (blocker / major / minor), each with the risk, why it matters on Apple platforms, and a specific fix. Approve only when no blockers remain.
Show that iOS & Apple Platform Architecture Reviewer - CLAUDE.md Rules is listed on HeyClaude. Paste this Markdown into your README — it renders the badge and links back to this page.
[](https://heyclau.de/entry/rules/mobile-app-development-expert)iOS & Apple Platform Architecture Reviewer - CLAUDE.md Rules side by side with 3 alternatives on trust, install, platform support, and disclosed safety notes — all from reviewed registry metadata.
1 trust signal differ across this comparison (Submitter).
| Field | iOS and Apple-platform architecture reviewer covering SwiftUI state, Swift concurrency isolation, app lifecycle, and App Store review and privacy requirements — grounded in Apple's developer documentation Open dossier | Expert in iOS, Android, and cross-platform mobile development with React Native, Flutter, and native frameworks Open dossier | Transform Claude into a Swift specialist with deep knowledge of value semantics, protocols, async/await, SwiftUI patterns, and Apple platform API design. Open dossier | A CLAUDE.md rule set that turns Claude into a senior .NET reviewer aligned with current Microsoft guidance across ASP.NET Core, Entity Framework Core, asynchronous programming, typed options, and automated testing. Open dossier |
|---|---|---|---|---|
| Next steps | ||||
| Trust | ||||
| Review status | ReviewedMaintainer reviewed | ReviewedMaintainer reviewed | ReviewedMaintainer reviewed | ReviewedMaintainer reviewed |
| Package trust | Package not verified | Package not verified | Package not verified | Package not verified |
| Source provenance | Source-backed | Source-backed | Source-backed | Source-backed |
| SubmitterDiffers | — | — | jaso0n0818 | jaso0n0818 |
| Install risk | Review first | Review first | Review first | Review first |
| Notes | Safety · Privacy ✓ | Safety ✓ Privacy ✓ | Safety · Privacy ✓ | Safety · Privacy ✓ |
| Brand | — | — | — | — |
| Category | rules | rules | rules | rules |
| Source | source-backed | source-backed | source-backed | source-backed |
| Author | JSONbored | JSONbored | jaso0n0818 | jaso0n0818 |
| Added | 2025-09-16 | 2025-09-16 | 2026-06-16 | 2026-06-13 |
| Platforms | Claude Code | Claude Code | Claude Code | Claude Code |
| Source repo | — | — | — | — |
| Safety notes | — missing | ✓Guidance-only CLAUDE.md text. Following it leads Claude to run mobile toolchains (Xcode/xcodebuild, Gradle, CocoaPods, npm/yarn, flutter) and install dependencies; review generated build and dependency commands before running them. | — missing | — missing |
| Privacy notes | ✓This rule reviews iOS app architecture in your local project and checks that permission usage, privacy manifests, and App Tracking Transparency are handled correctly. It does not itself collect or transmit any data. | ✓Guidance-only CLAUDE.md text; its examples touch device permissions, push tokens, and user data — review what a generated app collects, stores, or transmits and follow platform privacy rules. | ✓Rules reference API keys, signing certificates, and Keychain secrets; store them in Keychain or Xcode build settings, never in committed source files. | ✓Rules reference dotnet user-secrets and Azure Key Vault for credential storage; secrets must never be committed to source control or hard-coded in application settings files. |
| Prerequisites | — none listed | — none listed | — none listed | — none listed |
| Install | — | — | — | — |
| Config | — | — | — | — |
| Citations | ||||
| Claim | Unclaimed | Unclaimed | Unclaimed | Unclaimed |
Loading live community signals…
A short, calm digest of reviewed Claude resources. Unsubscribe any time.