From calendar-access
Show calendar events from the past 7 days. Use when user says "last week's events", "past week", "what happened last week", "last week's meetings", "previous week's schedule", or wants to review the past 7 days of events.
How this skill is triggered — by the user, by Claude, or both
Slash command
/calendar-access:last-weekThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Shortcut for viewing the past 7 days of events.
Shortcut for viewing the past 7 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 -v-7d +%Y-%m-%d 2>/dev/null || date -d '-7 days' +%Y-%m-%d)
END=$(date +%Y-%m-%d)
Follow provider detection from cross-cutting.md, then fetch events for the past 7 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.
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.