ios-viewmodel

ios-viewmodel is a cursor rule for Cursor from baijum/ukulele-companion. It costs 0 tokens per session (558 once invoked), scanned A, original, MIT.

Coding rules for iOS ViewModels, which hold screen state and logic separately from the user interface. They cover Swift's ObservableObject and property wrappers such as @Published, @StateObject, and @ObservedObject, plus Kotlin Multiplatform naming and collection conversions.

In plain words
What is it for?
Use them when building or reviewing iOS screens that use ViewModels or share code with Kotlin Multiplatform. They help decide how ViewModels are owned and passed between views.
Why use it?
They give developers consistent patterns for updating SwiftUI screens and passing shared state. They also highlight a collection conversion that can crash when Kotlin sets are treated like arrays.

Cursor rule for Cursor

Written for Cursor: installed under .cursor/. Also seen: positional $N argument.

Good fit Use them when building or reviewing iOS screens that use ViewModels or share code with Kotlin Multiplatform. They help decide how ViewModels are owned and passed between views.

Compare 6 cursor rules from other repositories ↓
Install with agentmods
npx agentmods add rules/baijum/ukulele-companion/ios-viewmodel
Install

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.

Clone the repo
git clone --depth 1 https://github.com/baijum/ukulele-companion

Made for: Cursor.

Wrote 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.

agentmods badge for ios-viewmodel

README.md
[![agentmods](https://agentmods.dev/badge/rules/baijum/ukulele-companion/ios-viewmodel.svg)](https://agentmods.dev/rules/baijum/ukulele-companion/ios-viewmodel)
Your own site
<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>
Per session 0 Nothing until a file matches its globs; then the whole rule loads.
When invoked 558 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

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.

ModelPer sessionOnce 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

Measured 8d ago against content hash ff137d7e8a13, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-07, from the pricing page.

Security

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.

.cursor/rules/ios-viewmodel.mdc · 60 lines

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 @StateObject for view-owned ViewModels (the view creates and owns the instance)
  • Use @ObservedObject for 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 Shared prefix: 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

Changes

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.

  1. 8d ago First seen · 60 lines · 0 tokens per session scan A ff137d7e8a13

Subscribe to this mod's changes

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.