| name | apple-notes-incident-runbook |
| description | Incident response runbook for Apple Notes automation failures.
Trigger: "apple notes incident".
|
| allowed-tools | Read, Write, Edit, Bash(osascript:*), Grep |
| version | 1.0.0 |
| license | MIT |
| author | Jeremy Longshore <jeremy@intentsolutions.io> |
| tags | ["saas","macos","apple-notes","automation"] |
| compatible-with | claude-code |
Apple Notes Incident Runbook
Common Incidents
Notes.app Crash During Automation
pgrep -x Notes || echo "Notes not running"
killall Notes 2>/dev/null; sleep 2; open -a Notes; sleep 3
osascript -l JavaScript -e "Application(\"Notes\").defaultAccount.notes.length"
iCloud Sync Stuck
defaults read MobileMeAccounts
killall bird; sleep 5; killall cloudd; sleep 5
osascript -l JavaScript -e "Application(\"Notes\").defaultAccount.notes.length"
Permissions Revoked
tccutil reset AppleEvents
osascript -l JavaScript -e "Application(\"Notes\").defaultAccount.notes.length"
Resources