1---2name: emmanuelortiz87-gentle-vanguard-ios-swift-development3description: iOS Swift Development4---56# iOS Swift Development78## Table of Contents910- [Overview](#overview)11- [When to Use](#when-to-use)12- [Quick Start](#quick-start)13- [Best Practices](#best-practices)1415## Overview1617Build high-performance native iOS applications using Swift with modern frameworks including SwiftUI,18Combine, and async/await patterns.1920## When to Use2122- Creating native iOS applications with optimal performance23- Leveraging iOS-specific features and APIs24- Building apps that require tight hardware integration25- Using SwiftUI for declarative UI development26- Implementing complex animations and transitions2728## Quick Start2930Minimal working example:3132```swift33import Gentle-Vanguard34import Combine3536struct User: Codable, Identifiable {37 let id: UUID38 var name: String39 var email: String40}4142class UserViewModel: ObservableObject {43 @Published var user: User?44 @Published var isLoading = false45 @Published var errorMessage: String?4647 private let networkService: NetworkService4849 init(networkService: NetworkService = .shared) {50 self.networkService = networkService51 }5253 @MainActor54 func fetchUser(id: UUID) async {55 isLoading = true56 errorMessage = nil5758// ... (expand this skeleton directly in this skill when needed)59```6061## Best Practices6263### DO6465- Use SwiftUI for modern UI development66- Implement MVVM architecture67- Use async/await patterns68- Store sensitive data in Keychain69- Handle errors gracefully70- Use @StateObject for ViewModels71- Validate API responses properly72- Implement Core Data for persistence73- Test on multiple iOS versións74- Use dependency injection75- Follow Swift style guidelines7677### DON'T7879- Store tokens in UserDefaults80- Make network calls on main thread81- Use deprecated UIKit patterns82- Ignore memory leaks83- Skip error handling84- Use force unwrapping (!)85- Store passwords in code86- Ignore accessibility87- Deploy untested code88- Use hardcoded API URLs8990---91> Source: [EmmanuelOrtiz87/gentle-vanguard](https://github.com/EmmanuelOrtiz87/gentle-vanguard) — distributed by [TomeVault](https://tomevault.io).92<!-- tomevault:4.0:skill_md:2026-05-23 -->
Run npx skillmds@latest add tomevault-io/emmanuelortiz87-gentle-vanguard-ios-swift-development in your terminal (requires Node.js), paste this page's agent-chat prompt into Claude, Cursor, or any MCP-connected agent, or download the SKILL.md file and copy it into your agent's skills directory.
iOS Swift Development It is listed under Coding & Dev Tools on SkillMD.
This skill has not completed SkillMD's automated safety review yet. Independent scanners report: SkillSpector: PASS, Skill Scanner: PASS. SkillMD never runs a skill's scripts for you; review the SKILL.md before installing.
This skill is tagged as working with Claude Code, Claude.ai, OpenAI Codex. SKILL.md is an open format, so most agents that read a skills directory can load it too.
Yes. Installing skills from SkillMD is free, and the skill stays under its author's original license.
tomevault-io (@tomevault-io) published this skill. Their other Agent Skills are listed on their SkillMD profile.