> ios-architecture
Standards for MVVM, Coordinators, and Clean Architecture (VIP/VIPER). Use when applying MVVM, Coordinators, or VIP/VIPER architecture in iOS apps. (triggers: **/*ViewModel.swift, **/*Coordinator.swift, **/*ViewController.swift, MVVM, Coordinator, ViewState, Output, Input)
curl "https://skillshub.wtf/HoangNguyen0403/agent-skills-standard/ios-architecture?format=md"iOS Architecture Standards
Priority: P0 (CRITICAL)
Implementation Guidelines
MVVM (Model-View-ViewModel)
- ViewModel Responsibility: Handle business logic, formatting, and state. No UIKit imports (except for platform types like
UIImageif strictly necessary). - ViewState: Use a single state object or discrete
@Publishedproperties for UI updates. - Inputs/Outputs: Define explicit protocols or nested types for inputs (events from View) and outputs (state for View).
Coordinator Pattern
- Navigation Logic: Decouple ViewControllers from navigation logic. The Coordinator handles instantiation and push/present.
- Dependency Injection: Pass dependencies (Services, Repositories) through the Coordinator into the ViewModels.
- Child Coordinators: Maintain a hierarchy; remove child coordinators when their flow is finished.
Clean Architecture (VIP/VIPER)
- VIP (Clean Swift): Use Interactor for logic, Presenter for UI formatting, and ViewController for display.
- Unidirectional Flow: Data flows: View -> Interactor -> Presenter -> View.
Anti-Patterns
- No Logic in VC: Move business logic to ViewModel/Interactor.
- No Public ViewModel State: Keep state private(set) or using publishers.
- No Direct Navigation: Use a Coordinator for screen transitions.
Verification Checklist (Mandatory)
-
Pure ViewModel: Does the ViewModel have any
UIKitimports? (Prohibited) -
Navigation: Is
navigationControllerused directly in the VC for transitions? (Use Coordinator) -
State Access: Is ViewModel state exposed as
public var? (Useprivate(set)or publishers) -
Deallocation: Are child coordinators correctly removed from the parent's collection on finish?
-
VIP Unidirection: Is the data flow unidirectional (View -> Interactor -> Presenter -> View)?
> related_skills --same-repo
> typescript-tooling
Development tools, linting, and build config for TypeScript. Use when configuring ESLint, Prettier, Jest, Vitest, tsconfig, or any TS build tooling. (triggers: tsconfig.json, .eslintrc.*, jest.config.*, package.json, eslint, prettier, jest, vitest, build, compile, lint)
> typescript-security
Secure coding practices for TypeScript. Use when validating input, handling auth tokens, sanitizing data, or managing secrets and sensitive configuration. (triggers: **/*.ts, **/*.tsx, validate, sanitize, xss, injection, auth, password, secret, token)
> typescript-language
Modern TypeScript standards for type safety and maintainability. Use when working with types, interfaces, generics, enums, unions, or tsconfig settings. (triggers: **/*.ts, **/*.tsx, tsconfig.json, type, interface, generic, enum, union, intersection, readonly, const, namespace)
> typescript-best-practices
Idiomatic TypeScript patterns for clean, maintainable code. Use when writing or refactoring TypeScript classes, functions, modules, or async logic. (triggers: **/*.ts, **/*.tsx, class, function, module, import, export, async, promise)