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 skills/softspark/ai-toolkit/swift-patternsnpx skills add softspark/ai-toolkit --skill swift-patternsgit clone --depth 1 https://github.com/softspark/ai-toolkitWrote 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/skills/softspark/ai-toolkit/swift-patterns)<a href="https://agentmods.dev/skills/softspark/ai-toolkit/swift-patterns"><img src="https://agentmods.dev/badge/skills/softspark/ai-toolkit/swift-patterns.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.1 | $0.00057 | $0.03150 |
| Opus 5 | $0.00028 | $0.01575 |
| Sonnet 5 | $0.00011 | $0.00630 |
| Haiku 4.5 | $0.00006 | $0.00315 |
Grade A, and why
swift-patterns scanned grade A 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.
Makes network callslowCapability
Not a fault in itself. Listed so you know the mod talks to something, and to what.
func fetch(id: String) async throws -> User How it starts
The opening of the file, as written. The whole thing — 421 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Swift / iOS Patterns
Project Structure
Swift Package (SPM)
MyPackage/
├── Package.swift
├── Sources/
│ ├── MyLibrary/
│ └── MyExecutable/
├── Tests/
│ └── MyLibraryTests/
└── Plugins/
// swift-tools-version: 5.10
import PackageDescription
let package = Package(
name: "MyPackage",
platforms: [.iOS(.v17), .macOS(.v14)],
products: [
.library(name: "MyLibrary", targets: ["MyLibrary"]),
],
dependencies: [
.package(url: "https://github.com/apple/swift-algorithms", from: "1.2.0"),
],
targets: [
.target(name: "MyLibrary",
dependencies: [.product(name: "Algorithms", package: "swift-algorithms")]),
.testTarget(name: "MyLibraryTests", dependencies: ["MyLibrary"]),
]
)
Xcode Project Layout
MyApp/
├── MyApp/
│ ├── App/ # Entry point, ContentView
│ ├── Features/ # Feature modules (Views, ViewModels, Models)
│ ├── Core/ # Networking, Storage, Extensions
│ └── Resources/ # Assets.xcassets, Info.plist
├── MyAppTests/
└── MyAppUITests/
Idioms / Code Style
Optionals
// guard-let for early exit
func process(user: User?) {
guard let user else { return }
print(user.name)
}
// Optional chaining + nil coalescing
let name = user?.profile?.displayName ?? "Anonymous"
// map/flatMap on optionals
let length: Int? = optionalString.map { $0.count }
// Never force-unwrap in production: user!.name
Protocol-Oriented Programming
protocol Cacheable: Identifiable where ID: Hashable {
var cacheKey: String { get }
}
extension Cacheable where ID == String {
var cacheKey: String { id }
}
Value Types vs Reference Types
Use structs by default (value semantics, thread-safe). Use classes when identity matters, shared mutable state is intentional, inheritance is needed, or ObjC interop is required.
Property Wrappers
@propertyWrapper
struct Clamped<Value: Comparable> {
var wrappedValue: Value {
didSet { wrappedValue = min(max(wrappedValue, range.lowerBound), range.upperBound) }
}
let range: ClosedRange<Value>
init(wrappedValue: Value, _ range: ClosedRange<Value>) {
self.range = range
self.wrappedValue = min(max(wrappedValue, range.lowerBound), range.upperBound)
}
}
struct Volume {
@Clamped(0...100) var level: Int = 50
}
What ships with it
1 file beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.
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 · 421 lines · 57 tokens per session scan A 20a9af96930e
swift-patterns is a skill published in the GitHub repository softspark/ai-toolkit (169 stars, last pushed yesterday), licensed Apache-2.0. It adds 57 tokens to every session and 3,150 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-03.
Other skills, from other repositories
swift-development
You MUST activate this skill when working on Swift projects.
agent-flutter-expert
Expert Flutter specialist mastering Flutter 3+ with modern architecture patterns. Specializes in cross-platform development, custom animations, native integrations, and performance optimization with focus on creating beautiful, native-performance applications.
android-kotlin-advisor
Développement Android natif avec Kotlin et Jetpack Compose — architecture MVVM/MVI, UI Compose, Hilt, Room, Coroutines, Flow, tests, Gradle KTS, Play Store. Se déclenche avec "Android", "Kotlin", "Jetpack Compose", "Android Studio", "Gradle", "Room", "Hilt", "Coroutines", "Play Store". Also triggers on "Android with…
flutter-helper
Aide au développement Flutter/Dart avec bonnes pratiques, patterns, snippets copiables et diagnostics d'erreurs. Se déclenche avec "Flutter", "Dart", "Widget", "BLoC", "Riverpod", "Provider", "pub.dev", "MaterialApp", "flutter build". Also triggers on "Flutter app", "Dart widget", "Flutter state management".
ios-standards
Swift 6.0+ standards — strict concurrency, @MainActor isolation, @Observable (not ObservableObject), and modern SwiftUI architecture for iOS 26+. Use when writing or reviewing Swift code, structuring ViewModels and services, or resolving concurrency and isolation design questions. Trigger on "Swift 6", "strict…
swift-architecture-auditor
Swift & iOS/macOS mimari inceleme, SwiftUI/UIKit katman analizi, MVVM/VIPER/TCA kontrolü, Concurrency ve Memory Leak denetim skilli.