ios-dev

ios-dev is a skill for Claude Code, Codex from ariadoss/superskills. It costs 49 tokens per session (662 once invoked), scanned A, original, MIT.

A set of guidelines for building and reviewing iPhone and iPad apps with Swift and SwiftUI, Apple’s tools for writing apps and interfaces.

In plain words
What is it for?
Use it to plan iOS apps, review Swift code, build SwiftUI interfaces, check Apple design guidance, and assess VoiceOver, contrast, text scaling, and device layouts.
Why use it?
It helps address common app-development decisions such as structure, navigation, testing, performance, and support for users with disabilities.

Skill for Claude CodeCodex

Part of the superskills plugin — 57 skills shipped together

Install

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.

agentmods
npx agentmods add skills/ariadoss/superskills/ios-dev
Any agent
npx skills add ariadoss/superskills --skill ios-dev
Clone the repo
git clone --depth 1 https://github.com/ariadoss/superskills

Made for: Claude Code, Codex.

Or install superskills, the plugin that ships this one along with the rest of its 57 skills.

Wrote 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.

agentmods badge for ios-dev

README.md
[![agentmods](https://agentmods.dev/badge/skills/ariadoss/superskills/ios-dev.svg)](https://agentmods.dev/skills/ariadoss/superskills/ios-dev)
Your own site
<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>
Per session 49 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 662 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

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.

ModelPer sessionOnce 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

Measured 4d ago against content hash ecc652f292ea, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

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.

design-skills/ios-dev/SKILL.md · 95 lines

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:

  1. Define core use cases (3–5 maximum for MVP)
  2. Choose data persistence strategy (SwiftData, Core Data, CloudKit, UserDefaults)
  3. Select networking approach (URLSession, async/await)
  4. Plan state management (ObservableObject, @Observable, TCA)
  5. Define navigation structure (tab-based, navigation stack, split view)

Read the full file on GitHub · 95 lines

Changes

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.

  1. 4d ago First seen · 95 lines · 49 tokens per session scan A ecc652f292ea

Subscribe to this mod's changes

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.

Related

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.…

Jeffallan/claude-skills · 86 tokens

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…

Kotlin/kotlin-agent-skills · 105 tokens

android-coroutines

Authoritative rules and patterns for production-quality Kotlin Coroutines onto Android. Covers structured concurrency, lifecycle integration, and reactive streams.

new-silvermoon/awesome-android-agent-skills · 29 tokens

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.

new-silvermoon/awesome-android-agent-skills · 44 tokens

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.

new-silvermoon/awesome-android-agent-skills · 37 tokens

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.

new-silvermoon/awesome-android-agent-skills · 39 tokens