macos-notes
Installation
SKILL.md
macOS Notes Integration
Create, read, update, delete, and search notes in Apple Notes.app using AppleScript (osascript) on macOS.
How It Works
All operations use osascript -e 'tell application "Notes" ... end tell'. Notes.app stores data in iCloud (or local accounts) and syncs across Apple devices automatically.
Commands
List All Folders
osascript -e '
tell application "Notes"
set output to ""
repeat with f in folders
set output to output & id of f & tab & name of f & linefeed
end repeat