Enforce repository coding standards for Swift 6.2 strict concurrency, actor isolation, @Observable models, SWIFT_APPROACHABLE_CONCURRENCY, @concurrent functions, and modern Swift APIs across visionOS app code.
Enforce repository coding standards for Swift 6.2 strict concurrency, actor isolation, @Observable models, SWIFT_APPROACHABLE_CONCURRENCY, @concurrent functions, and modern Swift APIs across visionOS app code.
Use when reviewing, writing, or migrating Swift code in this plugin's scope.
Similar popular skills
Related neighbors and high-traction skills in the same topics — useful to compare before installing.
Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.
Claude CodeNot declared
CursorNot declared
CodexNot declared
GitHub CopilotNot declared
WindsurfNot declared
Gemini CLINot declared
ClineNot declared
OpenCodeNot declared
Repository health
Stars60
LicenseLICENSE
Default branchmain
Open issues0
Status
Active
Package contents
Files included with this skill beyond the listing page.
skill mdSKILL.md3,973 B
docsSUMMARY.md319 B
History
First seen on skills.sh
First recorded snapshot · 66 installs
SKILL.md
Coding Standards Enforcer
Quick Start
Use this skill whenever Swift source changes are in scope and the question is whether the code matches the repository's concurrency, observation, and modern API standards.
Classify the work first:
- Swift 6.2 build-setting / language-mode problem - Swift MainActor / actor isolation / Sendable problem - Observation @Observable / SwiftUI @State / @Bindable ownership problem - modern API / style / safety cleanup
Load only the reference files that match that category.
Review the changed code in this order:
- compiler diagnostics and isolation boundaries - ownership and observation model - API modernization and safety
Fix or flag deviations explicitly; do not leave standards violations implied.
When the work is about API modernization, Foundation replacements, formatting, string matching, force unwraps, or Swift-native style.
Workflow
Inspect the changed Swift files and note the primary failure class.
Load the narrowest relevant reference file or files.
Apply the minimum change that restores compliance.
Rebuild or rerun the affected test scope if available.
Summarize what was fixed, what was intentionally left alone, and any
remaining migration debt.
When To Switch Skills
Switch to spatial-app-architecture when the core problem is scene
ownership, feature decomposition, or state placement across surfaces.
Switch to build-run-debug when the main blocker is a build failure or a
runtime issue that still needs reproduction after standards fixes.
Switch to test-triage when the work is primarily about narrowing a failing
test scope rather than correcting standards violations directly.
Guardrails
Do not impose a blanket @MainActor policy. The isolation choice has to
match ownership and runtime behavior.
In new SwiftUI or visionOS code, do not introduce ObservableObject,
@StateObject, or @ObservedObject unless the user explicitly states a compatibility constraint or the existing architecture cannot yet leave Combine-based observation.
For Observation ownership, load
[observation-modeling.md](references/observation-modeling.md) instead of duplicating its @Observable, @State, and @Bindable rules here.
Do not "fix" concurrency warnings by introducing unnecessary Task.detached,
DispatchQueue.main.async, or @unchecked Sendable.
Do not assume Swift 6.2 default actor isolation from memory; inspect project
build settings when that choice affects the fix.
Do not modernize APIs mechanically if it changes semantics.
Output Expectations
Provide:
the files or symbols reviewed
which standards category was applied
the concrete violations fixed or still present
the validation step used
the next skill to use if the blocker is no longer a standards question