Install any skill in seconds. Free to start, no credit card required.
Get Started Free →Generates pre-permission priming screens that explain benefits before showing iOS system permission dialogs. Use when user wants to increase permission grant rates, add pre-permission screens, or explain why the app needs access.
.claude/skills/rshankras-permission-priming/SKILL.md| Test case | Without → With | Effect | Δ tokens | Δ turns |
|---|---|---|---|---|
| case-10 | ✗→✓ | ▲ Improved | 134% | 0% |
| case-22 | ✗→✓ | ▲ Improved | 46% | 0% |
| case-03 | ✓→✗ | ▼ Worse | 34% | 0% |
| case-15 | ✓→✗ | ▼ Worse | 104% | 0% |
| case-11 | ✓→✓ | = Same ✓ | 39% | 0% |
Generate pre-permission priming screens — shown before iOS system permission dialogs to explain WHY the app needs access. Dramatically increases permission grant rates vs. cold-prompting users with the system alert.
Use this skill when the user:
Search for existing permission handling:
Glob: **/*Permission*.swift, **/*Authorization*.swift
Grep: "requestAuthorization" or "AVCaptureDevice" or "UNUserNotificationCenter" or "CLLocationManager" or "PHPhotoLibrary"If existing permission code found:
Search for required usage description keys:
Grep: "NSCameraUsageDescription" or "NSMicrophoneUsageDescription" or "NSLocationWhenInUseUsageDescription" or "NSPhotoLibraryUsageDescription" or "NSContactsUsageDescription" or "NSHealthShareUsageDescription"If missing keys found for requested permissions:
Ask user via AskUserQuestion:
Read templates.md for production Swift code.
Generate these files:
PermissionType.swift — Enum of all permission types with metadataPermissionStatus.swift — Unified status enum wrapping platform-specific statusesPermissionManager.swift — @Observable class that checks, requests, and opens SettingsPermissionPrimingView.swift — Pre-permission screen with benefits and CTAPermissionStatusTracker.swift — Monitors status changes from SettingsPermissionGatedModifier.swift — ViewModifier that gates content behind permission checkCheck project structure:
Sources/ exists -> Sources/Permissions/App/ exists -> App/Permissions/Permissions/After generation, provide:
Permissions/
├── PermissionType.swift # Permission enum with metadata
├── PermissionStatus.swift # Unified status wrapper
├── PermissionManager.swift # Check, request, open Settings
├── PermissionPrimingView.swift # Pre-permission priming screen
├── PermissionStatusTracker.swift # Monitor status changes
└── PermissionGatedModifier.swift # Gate content behind permissionBasic priming before system prompt:
swift// Show priming screen, then request system permission on tap PermissionPrimingView(permissionType: .notifications) { // User granted — proceed with feature startSendingNotifications() } onDenied: { // User denied or tapped "Not Now" showLaterPrompt() }
Gate a feature behind permission:
swift// Camera feature gated behind permission CameraView() .permissionGated(.camera) { // Priming screen shown automatically if not yet authorized }
In onboarding flow:
swiftstruct OnboardingPermissionsView: View { @State private var permissionManager = PermissionManager() var body: some View { VStack(spacing: 32) { PermissionPrimingView(permissionType: .notifications) { // Move to next permission } onDenied: { // Skip, ask later } } } }
Check status and re-prompt after denial:
swiftstruct SettingsView: View { @State private var permissionManager = PermissionManager() var body: some View { Section("Permissions") { ForEach(PermissionType.allCases, id: \.self) { type in PermissionRow( type: type, status: permissionManager.status(for: type), onRequest: { permissionManager.openSettings() } ) } } } }
swift@Test func primingViewShowsBeforeSystemPrompt() async throws { let manager = PermissionManager() let status = await manager.status(for: .notifications) #expect(status == .notDetermined) // Priming view should appear before system dialog } @Test func deniedPermissionDirectsToSettings() async throws { let manager = PermissionManager() // After denial, tapping "Enable" should open Settings let settingsURL = manager.settingsURL #expect(settingsURL != nil) } @Test func permissionGatedModifierShowsPrimingWhenNotAuthorized() async throws { // ViewModifier should show priming screen when permission is .notDetermined // and show content when .authorized }
Show priming screen at the natural moment the user first needs the feature, not during onboarding:
swift// User taps "Take Photo" -> show camera priming -> then system prompt Button("Take Photo") { showCameraPriming = true } .sheet(isPresented: $showCameraPriming) { PermissionPrimingView(permissionType: .camera, onGranted: { openCamera() }, onDenied: { showCameraPriming = false }) }
Explain the benefit in context of what the user is trying to do:
swiftPermissionPrimingView( permissionType: .location(.whenInUse), customTitle: "Find Nearby Restaurants", customDescription: "We use your location to show restaurants within walking distance." ) { ... }
After denial, the system prompt cannot be shown again. Direct to Settings:
swiftif permissionManager.status(for: .camera) == .denied { // Show explanation + "Open Settings" button PermissionDeniedView(permissionType: .camera) { permissionManager.openSettings() } }
.denied state gracefully..whenInUse, then separately request .always. iOS shows a follow-up prompt only after the user has used the app with When In Use access. Do not request Always upfront..provisional, notifications are delivered silently to Notification Center without asking. Consider whether quiet delivery is acceptable before building a priming screen.NS*UsageDescription key in Info.plist, the app will crash immediately. Always verify these keys exist.generators/push-notifications — Push notification setup and handlinggenerators/consent-flow — GDPR/privacy consent flowsOther measured skills in the registry, with their headline benchmark lift.