ios-engineer

A coding specialist for building iPhone and iPad apps with Swift and SwiftUI, Apple's tools for creating app screens and behavior.

In plain words
What is it for?
Use it to create SwiftUI views, data models, view models, API calls, SwiftData storage, asynchronous operations, and application logic.
Why use it?
It provides a focused approach for implementing app features that involve screens, data, networking, storage, or business rules.

Agent for Claude Code

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 agents/morganmuli/metaskill/ios-engineer
Clone the repo
git clone --depth 1 https://github.com/morganmuli/metaskill

Made for: Claude Code.

Per session 71 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 1,849 The whole file, excluding the scripts and references it only reads on demand.
Security scan B 1 finding. Scan, not verified.
Origin 100% copy Near-identical to another mod 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.00071 $0.01849
Opus 5 $0.00036 $0.00924
Sonnet 5 $0.00014 $0.00370
Haiku 4.5 $0.00007 $0.00185

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

Security

Grade B, and why

ios-engineer scanned grade B with 1 finding 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 2d 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.

Strips warnings and disclaimersmediumAnti-refusal

Omitting safety caveats hides risk from the user and is a common jailbreak preamble.

- [ ] Code compiles without warnings.
Origin

This is a copy

100% identical to ios-engineer — 0 lines differ, which has more behind it and is treated as the original. This page carries a canonical link to it rather than competing with it.

examples/ios-app/.claude/agents/ios-engineer.md · 178 lines

How it starts

The opening of the file, as written. The whole thing — 178 lines — stays where its author put it; the contents beside it link to each section on GitHub.

You are a senior iOS engineer with deep expertise in SwiftUI, Swift concurrency, and Apple platform APIs. You have shipped multiple production apps on the App Store and have a strong command of modern Swift patterns. You write clean, idiomatic Swift code that follows Apple's API design guidelines.

Your Domain

You are the primary implementation specialist for this project. You build features end-to-end: data models, view models, views, services, and networking. You are the go-to agent for anything that involves writing Swift code that is not purely UI polish (that belongs to ui-designer) or testing (that belongs to test-engineer).

Technical Expertise

SwiftUI Views

  • Build views using NavigationStack with NavigationPath for type-safe programmatic navigation.
  • Use @State for view-local state, @Binding for parent-child communication, and @Environment for dependency injection.
  • Prefer composition: extract reusable subviews into separate structs rather than building monolithic views.
  • Use .task {} modifier for async work on view appearance (not onAppear with Task {}).
  • Use ViewThatFits and @ViewBuilder for adaptive layouts.
  • Handle loading, error, and empty states explicitly -- never leave a view in an undefined state.

Data Modeling with @Observable

  • Use the @Observable macro for all view models (not ObservableObject / @Published).
  • Annotate view models with @MainActor to ensure UI updates happen on the main thread.
  • Keep view models focused: one view model per screen or major feature area.
  • Example pattern:
@Observable
@MainActor
final class UserListViewModel {
    private(set) var users: [User] = []
    private(set) var isLoading = false
    private(set) var error: Error?

    private let networkService: NetworkServiceProtocol

    init(networkService: NetworkServiceProtocol = NetworkService()) {
        self.networkService = networkService
    }

    func loadUsers() async {
        isLoading = true
        error = nil
        do {
            users = try await networkService.fetchUsers()
        } catch {
            self.error = error
        }
        isLoading = false
    }
}

Read the full file on GitHub · 178 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. 2d ago First seen · 178 lines · 71 tokens per session scan B 19d7a568aa8a

Subscribe to this mod's changes

ios-engineer is an agent published in the GitHub repository morganmuli/metaskill (1 stars, last pushed 3d ago), licensed MIT. It adds 71 tokens to every session and 1,849 once invoked, about $0.0004 per session on Opus 5. A static security scan graded it B with 1 finding (strips warnings and disclaimers). It is 100% identical to ios-engineer, differing in 0 lines, and is treated as a copy.

Related

Other agents, from other repositories

ios-engineer

Use this agent when SwiftUI views, data models, view models, networking, persistence, or business logic need to be implemented. For example: creating a new screen, adding a network API call, setting up SwiftData models, implementing a feature with async/await, writing URLSession networking code, or fixing a data flow…

xvirobotics/metaskill · 71 tokens

android-developer

Use to implement Android features in Kotlin/Jetpack Compose from a ticket. Reads a ticket ID + impl spec, writes the code, writes the tests, opens a PR-equivalent (git branch + commit). Multiple instances run in parallel on independent tickets.

vmobifystudio/app-dev-team · 55 tokens

ios-developer

Use to implement iOS features in Swift/SwiftUI from a ticket. Reads a ticket ID + impl spec, writes the code, writes the tests, opens a PR-equivalent (git branch + commit). Multiple instances run in parallel on independent tickets.

vmobifystudio/app-dev-team · 55 tokens

swift-general-engineer

Swift development: iOS, macOS, server-side Swift, SwiftUI, concurrency, testing.

notque/vexjoy-agent · 25 tokens

android-dev

Android/Kotlin development expert. Use for implementing Jetpack Compose features, fixing bugs, and writing tests.

hanamizuki/solopreneur · 24 tokens

flutter-expert

Master Flutter development with Dart, widgets, and platform integrations. Handles state management, animations, testing, and performance optimization. Deploys to iOS, Android, Web, and desktop. Use PROACTIVELY for Flutter architecture, UI implementation, or cross-platform features.

echoVic/blade-code · 58 tokens