google-calendar
Google Calendar Skill
Full CRUD Calendar management for AI agents. List, create, update, delete, search events, and manage multiple calendars.
Features
- List: See upcoming events with optional time range and text filtering.
- Get: Fetch a single event by ID with full details.
- Search: Free-text search across events.
- Create: Schedule events with attendees, location, timezone, and all-day support.
- Update: Patch existing events (only provided fields change).
- Delete: Remove events.
- Quick Add: Create events from natural language (e.g. "Lunch with Yoda tomorrow noon").
- Calendars: List all available calendars.
Prerequisites
- Google Cloud Project with Google Calendar API enabled.
- OAuth 2.0 Credentials — either
gcloudADC orcredentials.json.
Setup
⚡ Quick Setup (Recommended)
Set up Gmail, Calendar, and Contacts all at once:
uv run ~/.agents/skills/gmail/scripts/setup_workspace.py
Manual Setup
-
Using gcloud ADC:
gcloud auth application-default login \ --scopes https://www.googleapis.com/auth/calendar,https://www.googleapis.com/auth/cloud-platformThen verify:
uv run skills/google-calendar/scripts/google_calendar.py verify -
Alternative (credentials.json):
- Place
credentials.jsonin~/.calendar_credentials/. - Run
uv run skills/google-calendar/scripts/google_calendar.py setup
- Place
Usage
List Upcoming Events
# Next 5 events
uv run skills/google-calendar/scripts/google_calendar.py list --limit 5
# Events this week
uv run skills/google-calendar/scripts/google_calendar.py list \
--after "2026-02-16T00:00:00Z" \
--before "2026-02-22T23:59:59Z"
# Events matching text
uv run skills/google-calendar/scripts/google_calendar.py list --query "Council"
Get a Single Event
uv run skills/google-calendar/scripts/google_calendar.py get --id "abc123"
Search Events
uv run skills/google-calendar/scripts/google_calendar.py search --query "Training" --limit 5
Create an Event
# Timed event
uv run skills/google-calendar/scripts/google_calendar.py create \
--summary "Jedi Council Meeting" \
--start "2026-05-04T10:00:00" \
--end "2026-05-04T11:00:00" \
--description "Discussing the prophecy." \
--location "Council Chamber, Coruscant" \
--attendees yoda@dagobah.net mace@jedi.org
# All-day event
uv run skills/google-calendar/scripts/google_calendar.py create \
--summary "May the 4th Celebration" \
--start "2026-05-04" \
--end "2026-05-05" \
--all-day
Update an Event
Only provided fields change (patch semantics):
uv run skills/google-calendar/scripts/google_calendar.py update \
--id "abc123" \
--summary "Updated: Jedi Council Meeting" \
--start "2026-05-04T14:00:00" \
--end "2026-05-04T15:00:00"
Delete an Event
uv run skills/google-calendar/scripts/google_calendar.py delete --id "abc123"
Quick Add (Natural Language)
uv run skills/google-calendar/scripts/google_calendar.py quick \
--text "Lunch with Padmé tomorrow at noon at Dex's Diner"
List All Calendars
uv run skills/google-calendar/scripts/google_calendar.py calendars
JSON Output
Event:
{
"id": "abc123",
"summary": "Jedi Council Meeting",
"description": "Discussing the prophecy.",
"location": "Council Chamber, Coruscant",
"start": {
"dateTime": "2026-05-04T10:00:00-07:00",
"timeZone": "America/Phoenix"
},
"end": {
"dateTime": "2026-05-04T11:00:00-07:00",
"timeZone": "America/Phoenix"
},
"status": "confirmed",
"attendees": [
{ "email": "yoda@dagobah.net", "responseStatus": "needsAction" }
],
"htmlLink": "https://calendar.google.com/..."
}
More from baphomet480/claude-skills
kitchen-sink-design-system
Kitchen Sink design system workflow for Next.js and React projects, with secondary support for Astro, SvelteKit, Nuxt, and static HTML. Use when asked for a Kitchen Sink page, Design System, UI Audit, Style Guide, or Component Inventory, or when a project needs a component inventory plus component creation and a sink page implementation. Covers CVA variant architecture, Tailwind v3/v4 token systems, shadcn/ui integration, and TinaCMS content modeling.
40deep-research
Conduct comprehensive, multi-round research that produces rich visual reports. Use when asked for "deep research", "comprehensive analysis", "compare frameworks", "evaluate options", "research the state of X", or any task requiring investigation across 10+ sources. NOT for quick lookups — this is a 5-15 minute deep dive that produces a briefing-quality artifact with screenshots, diagrams, tables, and cited findings.
37design-lookup
Search and retrieve CSS components, SVG icons, design patterns, and visual inspiration from the web. Use when the user asks to find, look up, or search for CSS snippets, SVG icons, UI components, loading spinners, animations, design inspiration, or any visual/frontend design resource. Triggers on requests like "find me a CSS button", "look up an SVG spinner", "search for a card component", "find a wave divider SVG", or "get design inspiration for a dashboard".
34nextjs-tinacms
Build Next.js 16 + React 19 + TinaCMS sites with visual editing, blocks-based page builder, and complete SEO. Use this skill whenever the user mentions TinaCMS, Tina CMS, Next.js with a CMS, visual editing with Next.js, click-to-edit, content-managed Next.js site, blocks pattern page builder, or migrating to Next.js + TinaCMS. Also trigger for TinaCMS schema design, self-hosted TinaCMS, TinaCMS media configuration, or any TinaCMS troubleshooting. Covers Day 0-2 setup from scaffolding through production deployment on Vercel.
32cloudflare-pages
Deploy static sites to Cloudflare Pages with custom domains and CI/CD. Use when the user wants to deploy a site to Cloudflare Pages, add a custom domain to a Pages project, set up GitHub Actions CI/CD for Cloudflare Pages, roll back a deployment, or verify deployment status. Triggers on "deploy to Cloudflare", "Cloudflare Pages", "add custom domain", "pages deploy", or any Cloudflare Pages hosting workflow.
31local-ocr
Local OCR pipeline for AI agents featuring auto-rotation, deskew, and searchable PDF generation via ocrmypdf and Tesseract.
23