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 agents/xvirobotics/metaskill/ios-engineergit clone --depth 1 https://github.com/xvirobotics/metaskillWhat 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.00071 | $0.01849 |
| Opus 5 | $0.00036 | $0.00924 |
| Sonnet 5 | $0.00014 | $0.00370 |
| Haiku 4.5 | $0.00007 | $0.00185 |
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. Copies of this mod
1 near-identical copy found in the catalogue:
- ios-engineer — 100% identical, 0 lines differ
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
NavigationStackwithNavigationPathfor type-safe programmatic navigation. - Use
@Statefor view-local state,@Bindingfor parent-child communication, and@Environmentfor dependency injection. - Prefer composition: extract reusable subviews into separate structs rather than building monolithic views.
- Use
.task {}modifier for async work on view appearance (notonAppearwithTask {}). - Use
ViewThatFitsand@ViewBuilderfor adaptive layouts. - Handle loading, error, and empty states explicitly -- never leave a view in an undefined state.
Data Modeling with @Observable
- Use the
@Observablemacro for all view models (notObservableObject/@Published). - Annotate view models with
@MainActorto 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
}
}
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.
- 3d ago First seen · 178 lines · 71 tokens per session scan B 19d7a568aa8a
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.
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…
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.
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.
android-dev
Android/Kotlin development expert. Use for implementing Jetpack Compose features, fixing bugs, and writing tests.
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…
ios-engineer
实现和审查单平台 iOS Native Module、Bridge Adapter、Native UI、Xcode/SwiftPM 接线、平台测试与构建;不负责 Android、Dart Client 或跨端 Wire Contract。.