在 Manus 中运行任何 Skill
一键导入
一键导入
一键在 Manus 中运行任何 Skill
开始使用apple-reminders
Create, list, and manage Apple Reminders using osascript/JXA on macOS.
星标7
分支0
更新时间2026年2月11日 00:35
SKILL.md
readonly菜单
Create, list, and manage Apple Reminders using osascript/JXA on macOS.
基于 SOC 职业分类
Run system health checks on the openrappter agent framework and connected services.
Set up and use 1Password CLI (op). Use when installing the CLI, enabling desktop app integration, signing in, or reading/injecting/running secrets via op.
Search, read, and create Apple Notes using osascript/JXA on macOS.
Search, read, and create notes in Bear using x-callback-url on macOS.
Post and interact with Bluesky social network via the AT Protocol API.
Monitor RSS/Atom feeds and blogs for new posts. Fetches and summarizes latest entries.
| name | apple-reminders |
| description | Create, list, and manage Apple Reminders using osascript/JXA on macOS. |
| metadata | {"openclaw":{"emoji":"✅","os":["darwin"],"requires":{}}} |
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;
'