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/morganmuli/metaskill/ios-engineergit clone --depth 1 https://github.com/morganmuli/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 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. 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.
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.
- 2d ago First seen · 178 lines · 71 tokens per session scan B 19d7a568aa8a
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.
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.
swift-general-engineer
Swift development: iOS, macOS, server-side Swift, SwiftUI, concurrency, testing.
android-dev
Android/Kotlin development expert. Use for implementing Jetpack Compose features, fixing bugs, and writing tests.
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.