swiftui-view-architect — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited swiftui-view-architect (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
Default to vanilla SwiftUI: local state in views, shared dependencies in environment/services, business logic outside view bodies, and view models only when requested or already present.
Preserve stronger local conventions; otherwise order stored members top-to-bottom:
let inputs@State/other stored propertiesinitbodyView types with explicit inputs/bindings/callbacks. Keep computed some View helpers small and rare.body; call private methods, and move real domain logic into services/models.if/else swapping entire root branches; localize conditions in sections/modifiers/overlays/toolbars.init: @State private var viewModel: SomeViewModel
init(dependency: Dependency) {
_viewModel = State(initialValue: SomeViewModel(dependency: dependency))
}@Observable owners on iOS 17+, store as @State and pass explicitly. For iOS 16 or earlier, use @StateObject owner and @ObservedObject injection.body.For ~300+ line files, split aggressively into section views and small private helpers. // MARK: extensions can organize actions/helpers but are not a substitute for extracting real subviews.
Reference: references/mv-patterns.md. Use current Apple docs when SwiftUI/Observation behavior may have changed.
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.