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.
npx skills add sichengchen/apple-calendar-cli --skill apple-calendar-cligit clone --depth 1 https://github.com/sichengchen/apple-calendar-cliWrote 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.
[](https://agentmods.dev/skills/sichengchen/apple-calendar-cli/apple-calendar-cli)<a href="https://agentmods.dev/skills/sichengchen/apple-calendar-cli/apple-calendar-cli"><img src="https://agentmods.dev/badge/skills/sichengchen/apple-calendar-cli/apple-calendar-cli.svg" alt="Measured on agentmods" height="20"></a>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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00000 | $0.01602 |
| Opus 5 | $0.00000 | $0.00801 |
| Sonnet 5 | $0.00000 | $0.00320 |
| Haiku 4.5 | $0.00000 | $0.00160 |
Grade A, and why
apple-calendar-cli 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 6d ago.
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.
How it starts
The opening of the file, as written. The whole thing — 226 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Apple Calendar CLI — Agent Skill
You have access to apple-calendar-cli, a command-line tool for managing Apple Calendar events via EventKit on macOS.
Prerequisites
- macOS 14+ required
- Install:
brew install sichengchen/tap/apple-calendar-cli - Calendar access permission must be granted (System Settings > Privacy & Security > Calendars)
Date Format
All dates use ISO 8601 format:
- Date only:
YYYY-MM-DD(interpreted as start of day in local timezone) - Date and time:
YYYY-MM-DDTHH:MM:SS(local timezone) - Full ISO 8601:
YYYY-MM-DDTHH:MM:SSZor with offset
Global Options
--json— Output results as structured JSON (available on all commands)--version— Show version--help/-h— Show help
Always use --json when calling from an agent for reliable parsing.
Commands
list-calendars
List all available calendars.
apple-calendar-cli list-calendars --json
JSON output — array of objects:
[
{
"identifier": "CALENDAR-ID",
"title": "Work",
"type": "calDAV",
"source": "iCloud",
"color": "#1BADF8",
"isImmutable": false
}
]
Use identifier to filter events or target a specific calendar when creating events.
list-events
List events within a date range.
apple-calendar-cli list-events --json
apple-calendar-cli list-events --from 2026-02-22 --to 2026-02-28 --json
apple-calendar-cli list-events --from 2026-02-22 --to 2026-02-28 --calendar CALENDAR-ID --json
Options:
--from— Start date (default: today)--to— End date (default: 7 days from start)--calendar— Filter by calendar identifier
JSON output — array of event objects:
[
{
"identifier": "EVENT-ID",
"title": "Team standup",
"startDate": "2026-02-22T10:00:00Z",
"endDate": "2026-02-22T10:30:00Z",
"isAllDay": false,
"location": "Conference Room A",
"notes": null,
"calendarTitle": "Work",
"calendarIdentifier": "CALENDAR-ID",
"url": null,
"hasRecurrenceRules": true
}
]
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.
- 6d ago First seen · 226 lines · 0 tokens per session scan A 96dfa401dedf
apple-calendar-cli is a skill published in the GitHub repository sichengchen/apple-calendar-cli (6 stars, last pushed 6mo ago), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 1,602 tokens. 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.
Other skills, from other repositories
archive-event
Archive a meeting or event into Calendar from a narrative source — a meeting notice, an announcement, a message thread — deriving the time from the thread's authoritative correction, recording the source in the event notes, and labelling any value the source did not state. Use when the user hands over a notice…
calendar-management
Guide for effective use of che-ical-mcp for macOS Calendar & Reminders management. Use when user asks about calendar events, reminders, scheduling, or time management.
troubleshoot-tcc
A troubleshooting guide for macOS permissions that control access to Calendar and Reminders.
confirmation-protocol
Foresay-derived confirmation workflow for email operations. Use this skill BEFORE executing archive-mail with vague filters, composeemail (sending mail), deleteemail/moveemail in bulk, or any operation that touches 5+ emails. Show user a structured preview of "what I understood" before taking action, achieving…
bulk-operation-preview
Show structured preview of bulk email operations (5+ emails) before execute. Group by thread, flag false-positive candidates, count side-effect scope (files written, attachments downloaded, mailboxes touched). Use after email-search-disambiguation finishes Phase 1, as Phase 2 of the confirmation protocol.
email-search-disambiguation
A clarification step for email searches when a person, time period, direction, or scope is unclear. It presents specific possible meanings so the user can choose one.