typescript/skills/apple-notes/SKILL.md
Search, read, and create Apple Notes using osascript/JXA on macOS.
npx skillsauth add kody-w/openrappter apple-notesInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Interact with Apple Notes via JXA (JavaScript for Automation) on macOS.
osascript -l JavaScript -e '
const app = Application("Notes");
const notes = app.notes();
notes.slice(0, 10).map(n => n.name());
'
osascript -l JavaScript -e '
const app = Application("Notes");
app.notes.whose({name: {_contains: "search term"}})().map(n => ({
name: n.name(),
modified: n.modificationDate()
}));
'
osascript -l JavaScript -e '
const app = Application("Notes");
const folder = app.defaultAccount.folders.byName("Notes");
app.make({new: "note", at: folder, withProperties: {name: "Title", body: "<h1>Title</h1><p>Content</p>"}});
'
development
Get current weather and forecasts (no API key required).
tools
Send and receive WhatsApp messages via wacli command-line tool.
tools
Start and manage voice calls via the openrappter voice-call plugin.
content-media
Extract frames from video files using ffmpeg for analysis or processing.