From calendar-access
Show calendar events for the next 30 days. Use when user says "next month's calendar", "upcoming month", "what's coming up this month", "monthly schedule", or wants to see the next 30 days of events.
How this skill is triggered — by the user, by Claude, or both
Slash command
/calendar-access:next-monthThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Shortcut for viewing the next 30 days of events.
Shortcut for viewing the next 30 days of events.
skills/shared/references/cross-cutting.mdskills/shared/references/cross-cutting.md — provider detection, output format, error handlingskills/shared/references/providers.md — CLI commands and response parsingSTART=$(date +%Y-%m-%d)
END=$(date -v+30d +%Y-%m-%d 2>/dev/null || date -d '+30 days' +%Y-%m-%d)
Follow provider detection from cross-cutting.md, then fetch events for the next 30 days using commands from providers.md.
Google: gcalcli agenda "$START" "$END" --tsv --details location --nocolor
Microsoft: Use calendarView with startDateTime=${START}T00:00:00Z and endDateTime=${END}T00:00:00Z
Use the standard markdown table format from cross-cutting.md. Group events by day — one ## Calendar — Day header per day. Skip days with no events.
For 30-day views, consider summarizing days with many events (e.g., "5 events") and expanding on request.
npx claudepluginhub ondrasek/cc-plugins --plugin calendar-accessDisplays upcoming Google Calendar events across all calendars via gws CLI. Filter by today, tomorrow, week, days ahead, specific calendar ID, or timezone override. Read-only for terminal schedule checks.
Guides creation, editing, and verification of skills for AI coding agents using test-driven development with subagent scenarios. Use when authoring or debugging skills.