apple-notes-debug-bundle

Featured

Collect Apple Notes automation debug evidence for troubleshooting. Trigger: "apple notes debug".

AI & Automation 2,266 stars 315 forks Updated today MIT

Install

View on GitHub

Quality Score: 99/100

Stars 20%
100
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
50
License 10%
100
Description 5%
100

Skill Content

# Apple Notes Debug Bundle ## Overview This debug bundle collects diagnostic information from Apple Notes automation integrations for troubleshooting AppleScript and JXA (JavaScript for Automation) workflows. It captures macOS version compatibility, Notes.app account configuration, folder and note counts, TCC (Transparency, Consent, and Control) permission status, and Shortcuts automation entitlements. The resulting tarball helps diagnose permission denials, sandbox restrictions, iCloud sync failures, and scripting bridge errors that commonly block Notes automation. ## Prerequisites - macOS 12+ with Notes.app configured - `osascript`, `tar` available (built into macOS) - Terminal granted Automation permission for Notes.app in System Preferences > Privacy & Security ## Debug Collection Script ```bash #!/bin/bash set -euo pipefail BUNDLE="debug-apple-notes-$(date +%Y%m%d-%H%M%S)" mkdir -p "$BUNDLE" # Environment check echo "=== Environment ===" > "$BUNDLE/environment.txt" echo "macOS: $(sw_vers -productVersion 2>/dev/null || echo 'not macOS')" >> "$BUNDLE/environment.txt" echo "Notes.app running: $(pgrep -x Notes > /dev/null && echo Yes || echo No)" >> "$BUNDLE/environment.txt" echo "Shell: $SHELL ($TERM)" >> "$BUNDLE/environment.txt" echo "Timestamp: $(date -u)" >> "$BUNDLE/environment.txt" # Automation permissions (TCC database) echo "=== TCC Permissions ===" > "$BUNDLE/tcc-status.txt" sqlite3 ~/Library/Application\ Support/com.apple.TCC/TCC.db \ "SELECT client, aut...

Details

Author
jeremylongshore
Repository
jeremylongshore/claude-code-plugins-plus-skills
Created
7 months ago
Last Updated
today
Language
Python
License
MIT

Integrates with

Similar Skills

Semantically similar based on skill content — not just same category