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.
git clone --depth 1 https://github.com/baijum/ukulele-companionWrote 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/rules/baijum/ukulele-companion/ios-viewmodel)<a href="https://agentmods.dev/rules/baijum/ukulele-companion/ios-viewmodel"><img src="https://agentmods.dev/badge/rules/baijum/ukulele-companion/ios-viewmodel.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.00000 | $0.00558 |
| Opus 5 | $0.00000 | $0.00279 |
| Sonnet 5 | $0.00000 | $0.00112 |
| Haiku 4.5 | $0.00000 | $0.00056 |
Grade A, and why
ios-viewmodel 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 8d 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.
What it actually says
iOS ViewModel Rules
ObservableObject pattern
ViewModels conform to ObservableObject and expose state via @Published properties.
class TunerViewModel: ObservableObject {
@Published var detectedNote: String = ""
@Published var centsOff: Double = 0.0
}
@StateObject vs @ObservedObject
- Use
@StateObjectfor view-owned ViewModels (the view creates and owns the instance) - Use
@ObservedObjectfor ViewModels passed in from a parent view
struct TunerView: View {
@StateObject private var viewModel = TunerViewModel()
}
struct ChildView: View {
@ObservedObject var viewModel: TunerViewModel
}
KMP Swift naming conventions
- KMP classes drop the
Sharedprefix:PitchDetector.shared,UkuleleTuning.highG - KMP numeric types keep their Kotlin names:
KotlinFloatArray,KotlinDouble(no prefix)
KMP collection bridging
Kotlin/Native bridges List and Set to different Swift types. Force-casting the entire collection to a Swift Array crashes for Sets.
| Kotlin type | Swift bridge type | as! [NSNumber] safe? |
|---|---|---|
List<Int> |
[KotlinInt] (Array) |
Yes |
Set<Int> |
Set<KotlinInt> |
No — crashes (Set is not Array) |
// ❌ DON'T: cast the whole collection — crashes if source is a Kotlin Set
let values = Set((notes as! [NSNumber]).map { $0.int32Value })
// ✅ DO: iterate elements individually — works for both List and Set
let values = Set(notes.map { ($0 as! NSNumber).int32Value })
Existing ViewModels
FretboardViewModel, MetronomeViewModel, FavoritesViewModel, SettingsViewModel, ChordLibraryViewModel, SongbookViewModel, MelodyViewModel, ProgressionsViewModel, LearnViewModel, PitchMonitorViewModel, ScalePracticeViewModel, PracticeTimerViewModel, CustomPatternsViewModel, PlayAlongViewModel, ChordTransitionsViewModel, SetlistViewModel
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.
- 8d ago First seen · 60 lines · 0 tokens per session scan A ff137d7e8a13
ios-viewmodel is a cursor rule published in the GitHub repository baijum/ukulele-companion (14 stars, last pushed 4d ago), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 558 tokens. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other cursor rules, from other repositories
20-android-kotlin
There is no Android SDK/NDK available in most sandboxed dev environments (including the one this codebase was originally scaffolded in). Kotlin code in this repo has generally not been compiled or run by an AI agent — only reviewed for logical consistency. Treat Kotlin changes as higher-risk than Rust changes until a…
project
Redface 2 project rules — imports AGENTS.md as source of truth.
android_general_rules
For every Kotlin Android code you generate or refactor.
android_workmanager_best_practices
Best practices for WorkManager usage in background tasks.
cursorrules
You are a senior Android developer. Follow these rules strictly when writing or modifying Android/Kotlin code.
compose-architecture
Android architecture patterns: feature modularization, repository + data source pattern, sealed interfaces for UI state, ViewModel + StateFlow, Ktor / Retrofit + Kotlin Serialization, Room with Flow returns + KSP, coroutines structured concurrency.