Calctl
/install apple-calctl
calctl Skill
Native macOS Calendar CLI built with EventKit. No AppleScript, no osascript.
When to invoke
Trigger when user says or asks for:
- "calendar CLI"
- "apple calendar from terminal"
- "calctl"
- "event CLI for macOS"
- "list calendar events from command line"
- "create calendar event from terminal"
- "add recurring event"
- "schedule recurring calendar"
- "weekly meeting in calendar"
- "every monday calendar event"
How to use
The calctl CLI is already built at https://github.com/christianteohx/calctl. Clone and build it, or install via Homebrew.
Install (Homebrew, recommended):
brew install christianteohx/tap/calctl
Direct binary:
curl -fsSL https://github.com/christianteohx/calctl/releases/latest/download/calctl -o ~/bin/calctl
chmod +x ~/bin/calctl
Build from source (macOS 13+, Swift 6.0+):
git clone https://github.com/christianteohx/calctl
cd calctl
swift build
.build/release/calctl \x3Ccommand>
First run: macOS will prompt for Calendar permission. Grant it in System Settings > Privacy & Security > Calendars > Terminal.
Commands
calctl status check calendar access status
calctl authorize trigger permission prompt
calctl list list all calendars (with id, title, source)
calctl today [--attendees] show today's events (--attendees shows invitees)
calctl tomorrow [--attendees] show tomorrow's events (--attendees shows invitees)
calctl week [--attendees] show this week's events (--attendees shows invitees)
calctl date YYYY-MM-DD [--attendees] show events for a specific date
calctl add --title ... --start ... --end ... [--recurrence RULE] create an event
calctl edit --id \x3Cid> ... edit an event
calctl delete --id \x3Cid> delete an event
--calendar \x3Cname> filter by calendar name
Recurring events
Add --recurrence with iCalendar RRULE syntax:
calctl add --title "Weekly Standup" --start "2026-04-14 09:00" --end "2026-04-14 09:30" --recurrence "FREQ=WEEKLY;INTERVAL=1;BYDAY=MO"
calctl add --title "Daily Reminder" --start "2026-04-15 08:00" --end "2026-04-15 08:05" --recurrence "FREQ=DAILY"
calctl add --title "Monthly Report" --start "2026-05-01 10:00" --end "2026-05-01 11:00" --recurrence "FREQ=MONTHLY;BYMONTHDAY=1"
Supported RRULE keys: FREQ (DAILY/WEEKLY/MONTHLY/YEARLY), INTERVAL, BYDAY, BYMONTHDAY, COUNT, UNTIL.
Attendees
Use --attendees on today, tomorrow, week, or date commands to show attendee information:
calctl today --attendees
calctl week --attendees
Shows each attendee's name/email and participation status (accepted, pending, declined, tentative, etc.). Events with no attendees show no attendee data. Available in both plain text and JSON output.
- 确保已安装 OpenClaw(本地或 Docker 部署)
- 在对话框中输入安装命令:
/install apple-calctl - 安装完成后,直接呼叫该 Skill 的名称或使用
/apple-calctl触发 - 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
Calctl 是什么?
Command-line tool for macOS Sonoma that manages Apple Calendar events using EventKit with create, list, edit, and delete capabilities. 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 136 次。
如何安装 Calctl?
在 OpenClaw 或 Claude Code 对话框中运行命令「/install apple-calctl」即可一键安装,无需额外配置。
Calctl 是免费的吗?
是的,Calctl 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。
Calctl 支持哪些平台?
Calctl 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。
谁开发了 Calctl?
由 Christian Teo(@christianteohx)开发并维护,当前版本 v1.2.9。