typescript/skills/apple-reminders/SKILL.md
Create, list, and manage Apple Reminders using osascript/JXA on macOS.
npx skillsauth add kody-w/openrappter apple-remindersInstall 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.
Manage Apple Reminders via JXA on macOS.
osascript -l JavaScript -e '
const app = Application("Reminders");
app.defaultList().reminders().map(r => ({
name: r.name(),
completed: r.completed(),
dueDate: r.dueDate()
}));
'
osascript -l JavaScript -e '
const app = Application("Reminders");
const list = app.defaultList();
app.make({new: "reminder", at: list, withProperties: {name: "Buy groceries", body: "Milk, eggs, bread"}});
'
osascript -l JavaScript -e '
const app = Application("Reminders");
const r = app.defaultList().reminders.whose({name: "Buy groceries"})()[0];
r.completed = true;
'
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.