✓ Verified 💻 Development ✓ Enhanced Data

Calmly

Manage macOS Calendar events from the command line using EventKit.

Rating
4.2 (18 reviews)
Downloads
23,586 downloads
Version
1.0.0

Overview

Manage macOS Calendar events from the command line using EventKit.

Complete Documentation

View Source →

calmly

A calm CLI for macOS Calendar. Manage iCloud and local calendars without dialogs, prompts, or UI interruptions.

Why calmly?

  • AppleScript hangs — Calendar scripting often freezes waiting for permissions
  • ICS imports pop dialogs — Can't automate without user interaction
  • icalBuddy is read-only — Can't create events
calmly uses EventKit directly, so it works silently.

Installation

bash
brew tap halbotley/tap
brew install calmly

First run prompts for Calendar access (System Settings → Privacy → Calendars). One-time only.

Commands

List calendars

bash
calmly list

View upcoming events

bash
calmly events Work           # Next 30 days
calmly events Family 14      # Next 14 days

Create all-day event

bash
calmly add Work "Day Off" 2025-03-15

Create multi-day event

bash
calmly add Family "Vacation" 2025-07-01 2025-07-14

Create timed event

bash
calmly addtimed Work "Meeting" 2025-03-15 09:00 10:30
calmly addtimed Kids "Swim Practice" 2025-02-03 07:00 08:30

Batch Event Creation

For recurring events, loop in bash:

bash
# Morning practice every Tuesday/Thursday for 6 weeks
for d in 2025-02-04 2025-02-06 2025-02-11 2025-02-13; do
  calmly addtimed Kids "🏊 AM Practice" "$d" 07:00 08:30
done

Date Verification

Before creating events, verify day/date alignment:

bash
for d in 3 4 5 6 7; do date -j -f "%Y-%m-%d" "2025-02-0$d" "+%A %B %d"; done

Notes

  • Dates use YYYY-MM-DD format
  • Times use 24-hour HH:MM format
  • Calendar names are case-insensitive
  • Events sync to iCloud automatically
  • No delete command yet — delete via Calendar app or iCloud web

Installation

Terminal bash

openclaw install calmly
    
Copied!

💻Code Examples

brew install calmly

brew-install-calmly.txt
First run prompts for Calendar access (System Settings → Privacy → Calendars). One-time only.

## Commands

### List calendars

calmly addtimed Kids "Swim Practice" 2025-02-03 07:00 08:30

calmly-addtimed-kids-swim-practice-2025-02-03-0700-0830.txt
## Batch Event Creation

For recurring events, loop in bash:

done

done.txt
## Date Verification

Before creating events, verify day/date alignment:
example.sh
# Morning practice every Tuesday/Thursday for 6 weeks
for d in 2025-02-04 2025-02-06 2025-02-11 2025-02-13; do
  calmly addtimed Kids "🏊 AM Practice" "$d" 07:00 08:30
done

Tags

#devops_and-cloud

Quick Info

Category Development
Model Claude 3.5
Complexity One-Click
Author halbotley
Last Updated 3/10/2026
🚀
Optimized for
Claude 3.5
🧠

Ready to Install?

Get started with this skill in seconds

openclaw install calmly