apple-calendar

apple-calendar is a skill for Claude Code from HybridAIOne/hybridclaw. It costs 26 tokens per session (727 once invoked), scanned A, original, MIT.

Guidance for working with Apple Calendar on macOS and with .ics files, which are portable calendar-event files. It supports reviewing schedules, preparing events, and coordinating calendar actions.

In plain words
What is it for?
Use it to review Apple Calendar, draft or import .ics events, and prepare one-off calendar actions or invitations.
Why use it?
It helps ensure event details such as the title, time, timezone, and attendees are settled before anything is created. Portable .ics drafts can be imported into Calendar later.

Skill for Claude Code

Written for Claude Code: user-invocable in frontmatter.

Good fit Use it to review Apple Calendar, draft or import .ics events, and prepare one-off calendar actions or invitations.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/hybridaione/hybridclaw/apple-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 HybridAIOne/hybridclaw --skill apple-calendar
Clone the repo
git clone --depth 1 https://github.com/HybridAIOne/hybridclaw

Made for: Claude Code.

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 apple-calendar

README.md
[![agentmods](https://agentmods.dev/badge/skills/hybridaione/hybridclaw/apple-calendar/github.svg)](https://agentmods.dev/skills/hybridaione/hybridclaw/apple-calendar)
Your own site
<a href="https://agentmods.dev/skills/hybridaione/hybridclaw/apple-calendar"><img src="https://agentmods.dev/badge/skills/hybridaione/hybridclaw/apple-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 apple-calendar

Your own site · 80×15
<a href="https://agentmods.dev/skills/hybridaione/hybridclaw/apple-calendar"><img src="https://agentmods.dev/badge/skills/hybridaione/hybridclaw/apple-calendar.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 26 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 727 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
  • NVIDIA SkillSpector pass 7 Sept 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.00026 $0.00727
Opus 5 $0.00013 $0.00364
Sonnet 5 $0.00005 $0.00145
Haiku 4.5 $0.00003 $0.00073

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

Security

Grade A, and why

apple-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 12d 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.

skills/apple-calendar/SKILL.md · 108 lines

How it starts

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

Apple Calendar

Use this skill for macOS Calendar.app and .ics workflows.

Scope

  • draft or import .ics files
  • review or manage Apple Calendar events on the host Mac
  • coordinate one-off calendar actions through the Calendar app or an existing local CLI

Default Strategy

  1. Confirm title, date, timezone, and attendees before creating anything.
  2. If the task is mostly event creation, prefer a generated .ics file that the user can import into Calendar.
  3. If the user already has a local calendar CLI such as icalBuddy, use it for read-heavy workflows.
  4. For writes in Calendar.app itself, prepare the exact event details first and only then trigger the host-side action.

.ics Workflow

Use .ics when the user wants a portable calendar event or invite draft. Generate a fresh UID and timestamp for each event so repeated imports do not collide and the file does not go stale.

Minimal event template:

EVENT_UID="$(uuidgen)@hybridclaw"
EVENT_STAMP="$(date -u +%Y%m%dT%H%M%SZ)"
EVENT_START_UTC="YYYYMMDDTHHMMSSZ"
EVENT_END_UTC="YYYYMMDDTHHMMSSZ"
cat > event.ics <<EOF
BEGIN:VCALENDAR
VERSION:2.0
PRODID:-//HybridClaw//Apple Calendar//EN
BEGIN:VEVENT
UID:${EVENT_UID}
DTSTAMP:${EVENT_STAMP}
DTSTART:${EVENT_START_UTC}
DTEND:${EVENT_END_UTC}
SUMMARY:Project Review
DESCRIPTION:Review the release checklist.
LOCATION:Berlin Office
END:VEVENT
END:VCALENDAR
EOF

Replace EVENT_START_UTC and EVENT_END_UTC with the actual event times in UTC before writing the file.

After writing the file, import it with:

open event.ics

Optional Local CLI

If icalBuddy is already installed, it is useful for schedule reads:

icalBuddy eventsToday
icalBuddy eventsFrom:today to:tomorrow
icalBuddy eventsFrom:today to:7days

If no calendar CLI exists, fall back to .ics generation or direct Calendar app interaction on the host.

Working Rules

  • Always state the timezone explicitly when the user gives relative times.
  • Never send invites or create events with attendees without explicit confirmation.
  • If recurrence matters, describe it in plain language before encoding it into calendar fields.
  • Prefer read-before-write when the user is modifying an existing event.
  • If the user says "iCal", treat it as Apple Calendar unless they clearly mean a raw .ics file format workflow.

Read the full file on GitHub · 108 lines

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. 12d ago First seen · 108 lines · 26 tokens per session scan A baaec585bc7d

Subscribe to this mod's changes

apple-calendar is a skill published in the GitHub repository HybridAIOne/hybridclaw (132 stars, last pushed yesterday), licensed MIT. It adds 26 tokens to every session and 727 once invoked, about $0.0001 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-30.