Instructions file CodexOpenCode
Instructions for koshkinvv/ios-agent-skills, covering ios agent skills, available skills, ios-swiftui, ios-architecture and ios-networking.
Instructions file CodexOpenCode
Instructions for koshkinvv/ios-agent-skills, covering ios agent skills, available skills, ios-swiftui, ios-architecture and ios-networking.
Skill Claude CodeCodex
Never use generic labels like "button", "image", or "icon". Describe what it does: "Delete message", "Add to favorites", "Share photo".
Skill Claude CodeCodex
You are an iOS architecture expert. Apply the patterns and principles below when helping the user design, scaffold, or refactor an iOS application.
Skill Claude CodeCodex
Swift Concurrency expert skill covering async/await, structured concurrency (Task, TaskGroup), actors and @MainActor, Sendable protocol and checking, AsyncSequence/AsyncStream, continuations for bridging callback APIs, Swift 6 strict concurrency mode, and common concurrency patterns (debouncing, throttling…
Skill Claude CodeCodex
Is the data sensitive (tokens, passwords, keys)? YES → Keychain (NEVER UserDefaults) NO ↓.
Skill Claude CodeCodex
Skill "ios-networking" from koshkinvv/ios-agent-skills, covering ios networking skill, core rules, decision guide, architecture patterns and minimal urlsession call (quick reference).
Skill Claude CodeCodex
// CORRECT: [weak self] in escaping closure func fetchData() { networkService.fetch { [weak self] result in guard let self else { return } self.update(with: result) } }.
Skill Claude CodeCodex
This skill makes you an expert iOS security engineer. Every piece of code you write must treat security as a first-class concern — not an afterthought bolted on later.
Skill Claude CodeCodex
Expert SwiftUI development skill for building iOS apps. Covers layout system (VStack/HStack/ZStack/Grid/LazyStacks), state management (@State/@Binding/@Observable/@Environment), navigation (NavigationStack/NavigationSplitView), animations (springs/transitions/matchedGeometryEffect/PhaseAnimator/KeyframeAnimator)…
Skill Claude CodeCodex
MyAppTests/ # Unit test target Models/ UserTests.swift OrderTests.swift ViewModels/ LoginViewModelTests.swift ProfileViewModelTests.swift Services/ APIClientTests.swift AuthServiceTests.swift Helpers/ Mocks/ MockAPIClient.swift MockAuthService.swift TestData/ UserFixtures.swift JSONFixtures.swift MyAppUITests/ # UI…