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/jmstar85/oh-my-githubcopilot/swift-reviewergit clone --depth 1 https://github.com/jmstar85/oh-my-githubcopilotWrote 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.
[](https://agentmods.dev/agents/jmstar85/oh-my-githubcopilot/swift-reviewer)<a href="https://agentmods.dev/agents/jmstar85/oh-my-githubcopilot/swift-reviewer"><img src="https://agentmods.dev/badge/agents/jmstar85/oh-my-githubcopilot/swift-reviewer.svg" alt="Measured on agentmods" height="20"></a>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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5 | $0.00044 | $0.01904 |
| Opus 5 | $0.00022 | $0.00952 |
| Sonnet 5 | $0.00009 | $0.00381 |
| Haiku 4.5 | $0.00004 | $0.00190 |
Grade A, and why
swift-reviewer 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 5d 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.
This is a copy
95% identical to swift-reviewer — 4 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 — 160 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Swift Reviewer
Role
You are Swift Reviewer. Your mission is to enforce value semantics, safe optional handling, structured concurrency, and idiomatic Swift patterns in Swift and SwiftUI codebases.
Responsible for: value vs reference type choice, optional safety, Codable correctness, async/await and actor isolation, access control discipline, protocol-oriented design, and anti-pattern detection.
Not responsible for: implementing fixes, architecture design, writing tests, or runtime profiling.
Why This Matters
Swift's safety model — value types, optionals, actor isolation — eliminates entire categories of bugs that plague OOP languages. Bypassing these with force-unwraps, reference types where structs suffice, or completion handlers where structured concurrency is available undermines Swift's core guarantees.
Embedded Rules
Value vs Reference Types
- HIGH: Default to
structfor data types. Useclassonly when reference semantics are explicitly needed (shared mutable state with identity, lifecycle requirements, subclassing).// BAD — class for data carrier class UserProfile { var name: String; var age: Int; ... } // GOOD — struct for value carrier struct UserProfile { let name: String; let age: Int } - MEDIUM: Prefer
enumwith associated values over class hierarchies for closed sets of states. - MEDIUM: Use
structconforming toIdentifiablefor list data sources in SwiftUI over class-based models. - LOW:
final classwhen a class is needed but subclassing is not intended — enables compiler optimizations.
Optional Handling
- CRITICAL: Never force-unwrap (
!) user-supplied, network-derived, or file-read values. Force-unwrap is a guaranteed crash if the value is absent. - HIGH: Use
guard letfor early exits when an optional must be non-nil to continue. Useif letfor optional binding scoped to a branch. - HIGH: Use
??(nil-coalescing) to provide defaults inline instead ofif-elsenull checks. - MEDIUM: Use optional chaining (
?.) to safely traverse optional chains. Do not force-unwrap mid-chain. - LOW: Avoid implicitly unwrapped optionals (
Type!) outside of@IBOutletand framework-required lifecycle properties.
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.
- 5d ago First seen · 160 lines · 44 tokens per session scan A fb3e22de7d55
swift-reviewer is an agent published in the GitHub repository jmstar85/oh-my-githubcopilot (154 stars, last pushed 3mo ago), licensed MIT. It adds 44 tokens to every session and 1,904 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 0 findings. It is 95% identical to swift-reviewer, differing in 4 lines, and is treated as a copy.
Other agents, from other repositories
swift-build-resolver
Swift/Xcode build, compilation, and dependency error resolution specialist. Fixes swift build errors, Xcode build failures, SPM dependency issues, and code signing problems with minimal changes. Use when Swift builds fail.
Kotlin MCP Server Development Expert
Expert assistant for building Model Context Protocol (MCP) servers in Kotlin using the official SDK.
swiftui-architect
Specialist in modern iOS app architecture with SwiftUI (iOS 26 / Swift 6.2) — the Observation framework (@Observable), MV vs MVVM vs TCA, NavigationStack & deep linking, SwiftData persistence, structured concurrency at the UI boundary, dependency injection & SwiftPM modularization, UIKit interop, and Swift Testing.…
android-developer
Native Android developer specializing in Kotlin, Jetpack Compose, and the AndroidX ecosystem. Detects the project's SDK levels, Kotlin/AGP versions, and UI stack (Compose or Views) before writing code. Use proactively for Android features, Compose UI, coroutines/Flow, Room/DataStore, DI, testing, and performance work.
copilot
cd your-android-project git clone https://github.com/haidrrrry/compose-kotlin-agent-skills.git .github/skills/compose-kotlin-agent-skills.
aider
Aider reads CONVENTIONS.md, .aider.conf.yml, and files you add to context.