macOS AppleScript Fallback (Reminders / Notes / Calendar / iMessage)
/install macos-applescript-fallback
macOS AppleScript Fallback
Use local shell + AppleScript for 4 tasks:
- Create reminder (Reminders)
- Create note (Notes)
- Create calendar event (Calendar)
- Send iMessage (Messages)
Prefer bundled scripts in scripts/ over ad-hoc inline AppleScript for consistency and compatibility.
Quick Start
Run these scripts directly:
# reminder
./scripts/create_reminder.sh "今晚8点吃晚饭" "2026-03-22 20:00:00"
# note (HTML body required)
./scripts/create_note.sh "\x3Ch1>武汉三日游\x3C/h1>\x3Cp>Day1 黄鹤楼...\x3C/p>" "iCloud"
# calendar
./scripts/create_calendar_event.sh "跑步" "个人" "2026-03-23 08:00:00" "2026-03-23 08:30:00"
# iMessage
./scripts/send_imessage.sh "[email protected]" "武汉下周末天气:..."
Workflow
Step 1: Clarify user intent + required fields
- Reminder: title, optional datetime
- Note: title/body content (render as HTML), optional account name
- Calendar: title, calendar name, start datetime, end datetime
- iMessage: recipient (phone or Apple ID), message text
If missing required fields, ask one concise follow-up question.
Step 2: Execute script (not plugin)
Always call the corresponding script in scripts/.
Why:
- avoids low-version parser differences
- centralizes fallback logic
- easier to debug and publish
Step 3: Confirm result to user
- If script returns an object/id or
sent, report success. - If no output but exit code is 0, still report success and suggest user verify in app UI.
Step 4: On failure, diagnose quickly
Use checks from references/troubleshooting.md.
Most frequent root causes:
- macOS Automation permission prompt not approved
- locale-dependent date parsing format
- Messages iMessage service/account not initialized
- target calendar/account name mismatch
Compatibility Rules (important)
- Avoid locale-fragile date strings where possible.
- Messages: resolve service by
service type = iMessage, not by hard-coded service name. - Calendar: if named calendar doesn’t exist, fallback to first calendar.
- Notes: if account
iCloudis missing, fallback to default account. - Notes body uses HTML (
\x3Ch1>,\x3Cp>) for stable rendering.
Output style to user
Keep concise and concrete:
- what was created/sent
- key details (time/target)
- returned ID (if any)
- one-line next step if verification needed
Bundled Resources
scripts/
create_reminder.sh- args:
\x3Ctitle> ["YYYY-MM-DD HH:MM:SS"]
- args:
create_note.sh- args:
\x3Chtml-body> [account-name]
- args:
create_calendar_event.sh- args:
\x3Ctitle> \x3Ccalendar-name> \x3Cstart> \x3Cend>
- args:
send_imessage.sh- args:
\x3Cbuddy(phone/appleid)> \x3Cmessage>
- args:
references/
troubleshooting.md- permission/automation prompts
- date parsing and locale issues
- Messages service/account init
- calendar/account fallback checks
- diagnostic commands
- Make sure OpenClaw is installed (local or Docker)
- Run the install command in chat:
/install macos-applescript-fallback - After installation, invoke the skill by name or use
/macos-applescript-fallback - Provide required inputs per the skill's parameter spec and get structured output
What is macOS AppleScript Fallback (Reminders / Notes / Calendar / iMessage)?
Reliable macOS AppleScript fallback for creating Apple Reminders, Apple Notes, Apple Calendar events, and sending iMessage when direct tool/plugin routes are... It is an AI Agent Skill for Claude Code / OpenClaw, with 277 downloads so far.
How do I install macOS AppleScript Fallback (Reminders / Notes / Calendar / iMessage)?
Run "/install macos-applescript-fallback" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.
Is macOS AppleScript Fallback (Reminders / Notes / Calendar / iMessage) free?
Yes, macOS AppleScript Fallback (Reminders / Notes / Calendar / iMessage) is completely free, licensed under MIT-0. You can download, install and use it at no cost.
Which platforms does macOS AppleScript Fallback (Reminders / Notes / Calendar / iMessage) support?
macOS AppleScript Fallback (Reminders / Notes / Calendar / iMessage) is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).
Who created macOS AppleScript Fallback (Reminders / Notes / Calendar / iMessage)?
It is built and maintained by Fitzwilliam Zhang (@qy-zhang); the current version is v1.0.0.