macos-calendar

macos-calendar is a skill for Claude Code, Codex from lucaperret/agent-skills. It costs 92 tokens per session (1,570 once invoked), scanned A, original, MIT.

A command-line helper for creating, listing, and managing events in Apple Calendar on macOS. It accepts event details such as the calendar, date, time, duration, notes, alarms, and recurrence.

In plain words
What is it for?
Use it to add meetings, reminders, deadlines, all-day events, repeating events, or timed alerts to macOS Calendar. It can first list available calendars so an event is placed in the right one.
Why use it?
It removes the need to enter calendar events manually or deal with locale-specific date formats. It also provides a predictable way to translate relative dates such as tomorrow or next week into calendar entries.

Skill for Claude CodeCodex

Which agent this was written for is unclear — built for openclaw. Also seen: built for openclaw.

Good fit Use it to add meetings, reminders, deadlines, all-day events, repeating events, or timed alerts to macOS Calendar. It can first list available calendars so an event is placed in the right one.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/lucaperret/agent-skills/macos-calendar
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add lucaperret/agent-skills --skill macos-calendar
Clone the repo
git clone --depth 1 https://github.com/lucaperret/agent-skills

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for macos-calendar

README.md
[![agentmods](https://agentmods.dev/badge/skills/lucaperret/agent-skills/macos-calendar/github.svg)](https://agentmods.dev/skills/lucaperret/agent-skills/macos-calendar)
Your own site
<a href="https://agentmods.dev/skills/lucaperret/agent-skills/macos-calendar"><img src="https://agentmods.dev/badge/skills/lucaperret/agent-skills/macos-calendar/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for macos-calendar

Your own site · 80×15
<a href="https://agentmods.dev/skills/lucaperret/agent-skills/macos-calendar"><img src="https://agentmods.dev/badge/skills/lucaperret/agent-skills/macos-calendar.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 92 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,570 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • Socket pass 18 Mar 2026
  • Snyk pass 17 Feb 2026
How audits are shown
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00092 $0.01570
Opus 5 $0.00046 $0.00785
Sonnet 5 $0.00018 $0.00314
Haiku 4.5 $0.00009 $0.00157

Measured 10d ago against content hash def5b9704ede, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-10, from the pricing page.

Security

Grade A, and why

macos-calendar scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 10d ago.

The scan reads SKILL.md. This mod also ships 1 executable file (scripts/calendar.sh), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skills/macos-calendar/SKILL.md · 130 lines

How it starts

The opening of the file, as written. The whole thing — 130 lines — stays where its author put it; the contents beside it link to each section on GitHub.

macOS Calendar

Manage Apple Calendar events via $SKILL_DIR/scripts/calendar.sh. All date handling uses relative math (current date + N * days) to avoid locale issues (FR/EN/DE date formats).

Quick start

List calendars

Always list calendars first to find the correct calendar name:

"$SKILL_DIR/scripts/calendar.sh" list-calendars

Create an event

echo '<json>' | "$SKILL_DIR/scripts/calendar.sh" create-event

JSON fields:

Field Required Default Description
summary yes - Event title
calendar no first calendar Calendar name (from list-calendars)
description no "" Event notes
offset_days no 0 Days from today (0=today, 1=tomorrow, 7=next week)
iso_date no - Absolute date YYYY-MM-DD (overrides offset_days)
hour no 9 Start hour (0-23)
minute no 0 Start minute (0-59)
duration_minutes no 30 Duration
alarm_minutes no 0 Alert N minutes before (0=no alarm)
all_day no false All-day event
recurrence no - iCal RRULE string. See references/recurrence.md

Interpreting natural language

Map user requests to JSON fields:

User says JSON
"tomorrow at 2pm" offset_days: 1, hour: 14
"in 3 days" offset_days: 3
"next Monday at 10am" Calculate offset_days from today to next Monday, hour: 10
"February 25 at 3:30pm" iso_date: "2026-02-25", hour: 15, minute: 30
"every weekday at 9am" hour: 9, recurrence: "FREQ=WEEKLY;BYDAY=MO,TU,WE,TH,FR"
"remind me 1 hour before" alarm_minutes: 60
"all day event on March 1" iso_date: "2026-03-01", all_day: true

For "next Monday", "next Friday" etc: compute the day offset using the current date. Use date command if needed:

# Days until next Monday (1=Monday)
target=1; today=$(date +%u); echo $(( (target - today + 7) % 7 ))

Example prompts

Read the full file on GitHub · 130 lines

Files

What ships with it

2 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 10d ago First seen · 130 lines · 92 tokens per session scan A def5b9704ede

Subscribe to this mod's changes

macos-calendar is a skill published in the GitHub repository lucaperret/agent-skills (6 stars, last pushed 5mo ago), licensed MIT. It adds 92 tokens to every session and 1,570 once invoked, about $0.0005 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

google-calendar-tool

Google Calendar integration tool for listing and creating events via OAuth2 Calendar API access. Use when: checking upcoming events, creating appointments, or updating your schedule.

xuiltul/animaworks · 35 tokens

apple-notes

Use this skill when the user wants to interact with Apple Notes on macOS - creating, searching, reading, updating, deleting, organizing, or formatting notes and folders. This skill provides access to Apple Notes through MCP tools and includes safe formatting guidance.

sweetrb/apple-notes-mcp · 54 tokens

calendar-scheduling

Use when a product needs a booking surface — a pick-a-slot page, a Cal.com/Calendly embed, or real availability plus the confirmed meeting written to Google/Outlook — or when fixing double-booking, DST drift, or orphaned reschedule events. NOT calendar CRUD with no booking surface (that is google-workspace), NOT the…

ericrisco/rsc-harness · 83 tokens

apple-mail

Use this skill when the user wants to manage Apple Mail on macOS - reading, searching, sending, replying to, forwarding, and organizing emails and mailboxes. This skill provides access to Apple Mail through MCP tools.

sweetrb/apple-mail-mcp · 47 tokens

email-management-expert

Expert email management assistant for Apple Mail. Use this when the user mentions inbox management, email organization, email triage, inbox zero, organizing emails, managing mail folders, email productivity, checking emails, or email workflow optimization. Provides intelligent workflows and best practices for…

patrickfreyer/apple-mail-mcp · 61 tokens

apple-pim

Native macOS personal information management for calendars, reminders, contacts, and local Mail.app. Use when the user wants to schedule meetings, create events, check their calendar, create or complete reminders, look up contacts, find someone's phone number or email, manage tasks and to-do lists, triage local…

omarshahine/apple-pim · 83 tokens