ios-engineer

ios-engineer is an agent for Claude Code from xvirobotics/metaskill. It costs 71 tokens per session (1,849 once invoked), scanned B, original, MIT.

An iOS development specialist for building Swift and SwiftUI applications. It handles screens, data models, app logic, network requests, local storage, and asynchronous work.

In plain words
What is it for?
Use it to create SwiftUI screens, connect APIs with URLSession, define SwiftData models, implement view models and business logic, and fix how data moves through an app.
Why use it?
It gives application features a single implementation focus, reducing the need to coordinate these related pieces yourself. It also separates product implementation from visual design and testing work.

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/xvirobotics/metaskill/ios-engineer
Clone the repo
git clone --depth 1 https://github.com/xvirobotics/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 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.00071 $0.01849
Opus 5 $0.00036 $0.00924
Sonnet 5 $0.00014 $0.00370
Haiku 4.5 $0.00007 $0.00185

Measured 3d 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 3d 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

Copies of this mod

1 near-identical copy found in the catalogue:

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. 3d 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 xvirobotics/metaskill (67 stars, last pushed 6mo 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). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

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…

morganmuli/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

android-dev

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

hanamizuki/solopreneur · 24 tokens

swiftui-modernization

Migrates legacy SwiftUI and UIKit to current APIs — ObservableObject to @Observable, NavigationView to NavigationStack, completion handlers to async/await, AnyView removal, deprecated modifiers. Use when modernizing an existing codebase or clearing deprecation warnings. Behavior-preserving; requires a green test…

Nagarjuna2997/ios-agent-skill · 71 tokens

ios-engineer

实现和审查单平台 iOS Native Module、Bridge Adapter、Native UI、Xcode/SwiftPM 接线、平台测试与构建;不负责 Android、Dart Client 或跨端 Wire Contract。.

bladeofgod/flutter-ai-harness · 48 tokens