// // AppShortcuts.swift // Haru_Danim // // 시리에서 바로 부를 수 있는 대표 단축어 문구 (CLAUDE.md §10) // import AppIntents struct HaruDanimShortcuts: AppShortcutsProvider { static var appShortcuts: [AppShortcut] { AppShortcut( intent: StartTimeActionIntent(), phrases: [ "\(.applicationName)에서 측정 시작", "\(.applicationName) 시간 측정 시작해 줘", ], shortTitle: "측정 시작", systemImageName: "play.circle.fill" ) AppShortcut( intent: StopTimeActionIntent(), phrases: [ "\(.applicationName)에서 측정 종료", "\(.applicationName) 시간 측정 끝내 줘", ], shortTitle: "측정 종료", systemImageName: "stop.circle.fill" ) AppShortcut( intent: AddCountIntent(), phrases: [ "\(.applicationName)에서 횟수 추가", "\(.applicationName)에 기록 추가해 줘", ], shortTitle: "횟수 추가", systemImageName: "plus.circle.fill" ) AppShortcut( intent: GoalProgressIntent(), phrases: [ "\(.applicationName) 목표 진행률 알려 줘", ], shortTitle: "목표 진행률", systemImageName: "flag.checkered" ) } }