Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx agentmods add skills/ariadoss/superskills/ios-devnpx skills add ariadoss/superskills --skill ios-devgit clone --depth 1 https://github.com/ariadoss/superskillsWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/skills/ariadoss/superskills/ios-dev)<a href="https://agentmods.dev/skills/ariadoss/superskills/ios-dev"><img src="https://agentmods.dev/badge/skills/ariadoss/superskills/ios-dev.svg" alt="Measured on agentmods" height="20"></a>What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5 | $0.00049 | $0.00662 |
| Opus 5 | $0.00024 | $0.00331 |
| Sonnet 5 | $0.00010 | $0.00132 |
| Haiku 4.5 | $0.00005 | $0.00066 |
Grade A, and why
ios-dev scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 4d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 95 lines — stays where its author put it; the contents beside it link to each section on GitHub.
iOS Development Expert
Comprehensive guidance for iOS app development across multiple specialized areas.
When This Skill Activates
Use this skill when the user needs help with:
- Swift code quality and modern idioms
- SwiftUI component patterns
- Apple HIG compliance checks
- Accessibility assessment (VoiceOver, color contrast, Dynamic Type)
- Navigation architecture (NavigationStack, NavigationSplitView, TabView)
- App planning and architecture decisions
Available Modules
Coding Best Practices
Modern Swift patterns, architectural approaches, and code quality standards:
- Architecture: MVVM, Clean Architecture, The Composable Architecture (TCA)
- Swift idioms: value types, protocol-oriented programming, async/await, actors
- Performance: lazy loading, background processing, memory management
- Testing: XCTest, snapshot testing, UI testing
UI Review
Evaluate designs for HIG compliance:
- Typography: Dynamic Type support, custom fonts with scaling
- Accessibility: VoiceOver labels, color contrast (4.5:1 minimum), touch targets (44×44pt)
- Layout: Safe area handling, adaptivity across device sizes
- Components: Use of native controls vs. custom implementations
Navigation Patterns
NavigationStack (iOS 16+):
NavigationStack {
ContentView()
.navigationDestination(for: Item.self) { item in
DetailView(item: item)
}
}
NavigationSplitView (iPad/macOS):
NavigationSplitView {
Sidebar()
} detail: {
DetailView()
}
Programmatic navigation with NavigationPath:
@State private var path = NavigationPath()
NavigationStack(path: $path) {
ContentView()
.navigationDestination(for: Route.self) { route in
// ...
}
}
App Planner
Concept-to-architecture development:
- Define core use cases (3–5 maximum for MVP)
- Choose data persistence strategy (SwiftData, Core Data, CloudKit, UserDefaults)
- Select networking approach (URLSession, async/await)
- Plan state management (ObservableObject, @Observable, TCA)
- Define navigation structure (tab-based, navigation stack, split view)
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 4d ago First seen · 95 lines · 49 tokens per session scan A ecc652f292ea
ios-dev is a skill published in the GitHub repository ariadoss/superskills (9 stars, last pushed 19d ago), licensed MIT. It adds 49 tokens to every session and 662 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.
Other skills, from other repositories
kotlin-specialist
Provides idiomatic Kotlin implementation patterns including coroutine concurrency, Flow stream handling, multiplatform architecture, Compose UI construction, Ktor server setup, and type-safe DSL design. Use when building Kotlin applications requiring coroutines, multiplatform development, or Android with Compose.…
kotlin-tooling-agp9-migration
Migrates Kotlin Multiplatform (KMP) projects to Android Gradle Plugin 9.0+. Handles plugin replacement (com.android.kotlin.multiplatform.library), module splitting, DSL migration, and the new default project structure. Use when upgrading AGP, when build fails due to KMP+AGP incompatibility, or when the user mentions…
android-coroutines
Authoritative rules and patterns for production-quality Kotlin Coroutines onto Android. Covers structured concurrency, lifecycle integration, and reactive streams.
kotlin-concurrency-expert
Kotlin Coroutines review and remediation for Android. Use when asked to review concurrency usage, fix coroutine-related bugs, improve thread safety, or resolve lifecycle issues in Kotlin/Android code.
android-viewmodel
Best practices for implementing Android ViewModels using Kotlin 2.3+ Explicit Backing Fields, StateFlow for UI state, and SharedFlow for one-off events.
compose-ui
Best practices for building UI with Jetpack Compose, focusing on state hoisting, detailed performance optimizations, and theming. Use this when writing or refactoring Composable functions.