Best for
- permission / permission prompt / TCC
- Accessibility access, Screen Recording, Full Disk Access, Input Monitoring
- Automation / Apple Events / "wants to control"
aka-kika/akakika-skills/skills/swift-macos/macos-permissions-privacy/SKILL.md
Use when a macOS app needs a TCC permission or touches private data — the map of which API, Info.plist key, and entitlement each permission needs, pre-prompt explanation patterns, denied-state recovery with System Settings deep links, and honest privacy copy.
Decision brief
Request only what the app needs now, explain why before the system asks, and give every denied state a recovery path. On macOS the permission landscape (TCC) is a patchwork — each permission has its own API, its own Info.plist key, and its own failure mode; the map below is most…
Compatibility matrix
| Platform | Status | Evidence | What to check |
|---|---|---|---|
| Codex | Not declared | No explicit evidence | Portability before use |
| Claude Code | Not declared | No explicit evidence | Portability before use |
| Cursor | Not declared | No explicit evidence | Portability before use |
| Gemini CLI | Not declared | No explicit evidence | Portability before use |
Installation
The source command is displayed only when detected. A safe inspection prompt is always available so your agent can explain every action before execution.
npx skills add https://github.com/aka-kika/akakika-skills --skill "skills/swift-macos/macos-permissions-privacy"Inspect the Agent Skill "macos-permissions-privacy" from https://github.com/aka-kika/akakika-skills/blob/b7081fb221ba5dc51c3b074c2dda67f143c20112/skills/swift-macos/macos-permissions-privacy/SKILL.md at commit b7081fb221ba5dc51c3b074c2dda67f143c20112. List every install step, command, network request, credential, file read/write, external action, and rollback step. Explain whether it fits my task. Do not install or execute anything until I approve.
Workflow
1. Check silently. Never re-prompt on launch; read status first.
Use this skill when the user says:
Review the “Core rule” section in the pinned source before continuing.
The column you'll consult most. "Prompt?" = can the app trigger a system dialog, or must the user flip a switch in System Settings themselves?
A denied state without a button to the right pane is a dead end; with it, it's a two-click fix.
Permission review
The documentation asks the agent to read local files, directories, or repositories.
What we access concrete: "the folder you choose", not "your files"Evidence record
| Signal | Value | Evidence type | Meaning |
|---|---|---|---|
| Quality score | 91/100 | Computed | Documentation, specificity, maintenance, and trust rules |
| Repository stars | 8 | Source | Repository attention, not individual Skill quality |
| Compatibility | 0 platforms | Source | Declared in the catalog source record |
| Usage guide | automated source guide | Editorial | Generated or reviewed according to the visible evidence level |
Pinned source
Request only what the app needs now, explain why before the system asks, and give every denied state a recovery path. On macOS the permission landscape (TCC) is a patchwork — each permission has its own API, its own Info.plist key, and its own failure mode; the map below is most of the work.
Use this skill when the user says:
Do not use this skill for notification permission specifically (see macos-notifications) or for iOS-only flows like App Tracking Transparency.
Explain before the system prompts. Request at the moment of need.
Request the narrowest thing that works. Every denied state has a
visible recovery path.
The column you'll consult most. "Prompt?" = can the app trigger a system dialog, or must the user flip a switch in System Settings themselves?
| Need | API to check/request | Info.plist usage string | Prompt? |
|---|---|---|---|
| Files the user picks | NSOpenPanel / drag-in + security-scoped bookmarks | — | Picker is consent |
| Desktop / Documents / Downloads (programmatic) | just access it; system prompts once | — | Yes, automatic |
| Network volumes / removable | same | — | Yes, automatic |
| Full Disk Access | none — attempt access, detect failure | — | No — Settings only |
| Accessibility (control UI, event taps) | AXIsProcessTrustedWithOptions | — | Prompt opens Settings |
| Screen Recording | CGPreflightScreenCaptureAccess() / CGRequestScreenCaptureAccess() | — | Once; then Settings |
| Input Monitoring | IOHIDCheckAccess(.listenEvent) / IOHIDRequestAccess | — | Yes |
| Automation (Apple Events) | AEDeterminePermissionToAutomateTarget | NSAppleEventsUsageDescription | Yes, per target app |
| Camera / Microphone | AVCaptureDevice.requestAccess(for:) | NSCameraUsageDescription / NSMicrophoneUsageDescription | Yes |
| Contacts | CNContactStore.requestAccess | NSContactsUsageDescription | Yes |
| Calendar / Reminders | EKEventStore.requestFullAccessToEvents() | NSCalendarsFullAccessUsageDescription | Yes |
| Location | CLLocationManager.requestWhenInUseAuthorization | NSLocationUsageDescription | Yes |
Sandboxed apps additionally need the matching entitlement (com.apple.security.files.user-selected.read-write, .device.camera, .personal-information.*, …) — without it the API fails without even prompting. A missing Info.plist usage string doesn't ask either: it crashes the app at request time.
1. Check silently. Never re-prompt on launch; read status first.
2. Pre-explain at the moment of need. The system dialog must never be the first the user hears of it:
The user clicks "Watch this folder"
→ sheet: "To notice new files, the app needs access to the
folder you choose. Nothing leaves your Mac." [Choose Folder…]
→ NSOpenPanel (which itself grants the access)
3. Request narrowly. A folder picker instead of Full Disk Access. One target app for Automation instead of "everything". whenInUse instead of always.
4. Handle denial with recovery. Show the off state where the feature lives and in Settings, with a deep link.
func openPrivacyPane(_ pane: String) {
let url = URL(string:
"x-apple.systempreferences:com.apple.preference.security?\(pane)")!
NSWorkspace.shared.open(url)
}
// The panes you'll actually need:
// Privacy_Accessibility Privacy_ScreenCapture Privacy_AllFiles
// Privacy_Automation Privacy_Microphone Privacy_Camera
// Privacy_ListenEvent (input monitoring) Privacy_LocationServices
A denied state without a button to the right pane is a dead end; with it, it's a two-click fix.
In the sandbox, whatever the user picks (or drags in) is granted. Persist access with a security-scoped bookmark, or the grant dies with the process:
// After NSOpenPanel:
let bookmark = try url.bookmarkData(options: .withSecurityScope,
includingResourceValuesForKeys: nil,
relativeTo: nil)
// store `bookmark` (Data) in your app support dir
// On next launch:
var stale = false
let url = try URL(resolvingBookmarkData: bookmark,
options: .withSecurityScope,
relativeTo: nil,
bookmarkDataIsStale: &stale)
guard url.startAccessingSecurityScopedResource() else { /* re-pick */ return }
defer { url.stopAccessingSecurityScopedResource() }
// … read/write …
If stale is true, re-create the bookmark from the resolved URL. If resolving fails (folder moved/deleted), ask the user to pick again — don't silently do nothing.
// Check without prompting:
let trusted = AXIsProcessTrusted()
// Check AND show the system's "grant in Settings" dialog once:
let options = [kAXTrustedCheckOptionPrompt.takeUnretainedValue() as String: true]
let trusted = AXIsProcessTrustedWithOptions(options as CFDictionary)
The grant does not take effect until your process is relaunched in some flows — after the user enables it, re-check on didBecomeActiveNotification and offer "Relaunch" if features still fail.
if !CGPreflightScreenCaptureAccess() { // silent check
let granted = CGRequestScreenCaptureAccess() // prompts once, ever
if !granted { /* show recovery UI → Privacy_ScreenCapture */ }
}
CGRequestScreenCaptureAccess only produces a dialog the first time; afterwards it just returns false. Treat "false" as "send them to Settings", and expect macOS 15+ to periodically re-confirm this permission with the user on your behalf.
There is no API to request FDA. First redesign: can a folder picker cover it? If genuinely not (backup tools, indexers), detect by probing a protected path and guide:
// TCC-protected on every Mac; unreadable without FDA
let probe = FileManager.default
.homeDirectoryForCurrentUser
.appendingPathComponent("Library/Mail")
let hasFDA = (try? FileManager.default
.contentsOfDirectory(atPath: probe.path)) != nil
Pair the guide screen with Privacy_AllFiles and exact instructions ("drag the app into the list, then relaunch").
var target = NSAppleEventDescriptor(bundleIdentifier: "com.apple.finder")
let status = AEDeterminePermissionToAutomateTarget(
target.aeDesc, typeWildCard, typeWildCard, true) // true = may prompt
// noErr = allowed · errAEEventNotPermitted = denied
// procNotFound = target not running (launch it first, then ask)
Requires NSAppleEventsUsageDescription in Info.plist and (sandboxed) a scripting-targets entitlement. The prompt names the target app — one prompt per target.
Wherever a permission is explained — pre-prompt sheet, Settings, onboarding:
Why we need this one sentence, the feature not the API
What we access concrete: "the folder you choose", not "your files"
What stays local say it plainly if everything does
How to change it "System Settings > Privacy & Security > X, anytime"
If the app is local-first, say so in the permission moment — "processed on your Mac, never uploaded" is the sentence that converts a hesitant deny into a grant, and it must be true.
Apps that need 2+ permissions should show their state honestly in one place:
Permissions
Folder access ~/Notes granted Change…
Accessibility Not granted Open System Settings…
Screen recording Granted
Re-read all statuses when the app becomes active — every one of these can be revoked behind your back, and stale "Granted" labels destroy trust.
[ ] Every permission has a pre-prompt explanation in product language
[ ] Requests fire at the moment of need, never stacked at first launch
[ ] Narrowest scope chosen (picker over FDA, one target over many)
[ ] Info.plist usage strings present for every prompting API (missing = crash)
[ ] Sandbox entitlements match the APIs used
[ ] Denied state visible where the feature lives, with the right deep link
[ ] Statuses re-checked on app activation, never cached across launches
[ ] Security-scoped bookmarks persisted and stale-handled for file access
[ ] Privacy copy states what stays local — and it's true
tccutil reset <service> <bundle-id>) → feature first-use shows your explanation, then the system prompt.Frequently asked questions
Request only what the app needs now, explain why before the system asks, and give every denied state a recovery path. On macOS the permission landscape (TCC) is a patchwork — each permission has its own API, its own Info.plist key, and its own failure mode; the map below is most…
The source record exposes this install command: npx skills add https://github.com/aka-kika/akakika-skills --skill "skills/swift-macos/macos-permissions-privacy". Inspect the command and pinned source before running it.
Static rules flagged read-files in the source; the page lists the matching lines and excerpts.
Alternatives
oaustegard/claude-skills
Generate hierarchical _FEATURES.md files that describe what a codebase DOES from a user/consumer perspective, anchored to source symbols via tree-sitting. Supports large complex codebases through feature-driven decomposition into sub-feature files. Uses a multi-pass synthesis: orientation → detail → overview rewrite. Use when someone says "what does this do", "document features", "feature inventory", "_FEATURES.md", or needs to understand a codebase's purpose before modifying it. Complements tre
HKUDS/Vibe-Trading
Create, modify, and optimize quantitative trading strategies, then backtest and evaluate them.
vasilyu1983/AI-Agents-public
Guides iOS testing with XCTest, XCUITest, Swift Testing, simctl, and xcresult. Use when choosing destinations, controlling flakes, or parsing test artifacts for native apps.
brucesongs/kali-claw
Insecure Design (OWASP A06:2025) focuses on security flaws in system architecture and design phases, rather than code implementation-level bugs.