Automate Google Calendar workflows including event creation, scheduling, availability checks, attendee management, and calendar browsing through Composio's Google Calendar toolkit.
Works with
AI-first code editor with Composer
Before installing skills in Cursor, ensure your development environment meets these requirements:
node --versiongoogle-calendar-automationExecute the skills CLI command in your project's root directory to begin installation:
Fetches google-calendar-automation from composiohq/awesome-claude-skills and configures it for Cursor.
The CLI shows a list of agents. Use arrow keys and space to select Cursor:
Confirm successful installation by checking the skill directory location:
Restart Cursor to activate google-calendar-automation. Access via /google-calendar-automation in your agent's command palette.
We perform automated surface-level scans (Gen AI Scanner, Socket, Snyk) during installation. These checks detect common vulnerabilities but do not guarantee complete security. Always review skill source code and verify the publisher's reputation before production use.
Skills execute code in your environment. Always review source, verify the publisher, and test in isolation before production.
Submit your Claude Code skill and start earning
Automate repetitive workflows and reduce manual effort
Example
Generate reports, summarize documents, draft communications
Save 3-5 hours per week on routine tasks
Learn new skills, understand complex topics, get expert guidance
Example
Explain concepts, provide examples, suggest learning resources
Accelerate learning and skill development by 2x
Enhance output quality through reviews, suggestions, and refinements
Example
Review drafts, suggest improvements, catch errors
Improve work quality by 30-40% with less effort
0
total installs
0
this week
51.7K
GitHub stars
0
upvotes
Run in your terminal
0
installs
0
this week
51.7K
stars
Automate Google Calendar workflows including event creation, scheduling, availability checks, attendee management, and calendar browsing through Composio's Google Calendar toolkit.
Toolkit docs: composio.dev/toolkits/googlecalendar
RUBE_MANAGE_CONNECTIONS with toolkit googlecalendarRUBE_SEARCH_TOOLS first to get current tool schemasGet Rube MCP: Add https://rube.app/mcp as an MCP server in your client configuration. No API keys needed — just add the endpoint and it works.
RUBE_SEARCH_TOOLS respondsRUBE_MANAGE_CONNECTIONS with toolkit googlecalendarWhen to use: User wants to create, update, or delete calendar events
Tool sequence:
GOOGLECALENDAR_LIST_CALENDARS - Identify target calendar ID [Prerequisite]GOOGLECALENDAR_GET_CURRENT_DATE_TIME - Get current time with proper timezone [Optional]GOOGLECALENDAR_FIND_FREE_SLOTS - Check availability before booking [Optional]GOOGLECALENDAR_CREATE_EVENT - Create the event [Required]GOOGLECALENDAR_PATCH_EVENT - Update specific fields of an existing event [Alternative]GOOGLECALENDAR_UPDATE_EVENT - Full replacement update of an event [Alternative]GOOGLECALENDAR_DELETE_EVENT - Delete an event [Optional]Key parameters:
calendar_id: Use 'primary' for main calendar, or specific calendar IDstart_datetime: ISO 8601 format 'YYYY-MM-DDTHH:MM:SS' (NOT natural language)timezone: IANA timezone name (e.g., 'America/New_York', NOT 'EST' or 'PST')event_duration_hour: Hours (0+)event_duration_minutes: Minutes (0-59 only; NEVER use 60+)summary: Event titleattendees: Array of email addresses (NOT names)location: Free-form text for event locationPitfalls:
start_datetime must be ISO 8601; natural language like 'tomorrow' is rejectedevent_duration_minutes max is 59; use event_duration_hour=1 instead of event_duration_minutes=60timezone must be IANA identifier; abbreviations like 'EST', 'PST' are NOT validattendees only accepts email addresses, not names; resolve names firstexclude_organizer=trueWhen to use: User wants to find or browse events on their calendar
Tool sequence:
GOOGLECALENDAR_LIST_CALENDARS - Get available calendars [Prerequisite]GOOGLECALENDAR_FIND_EVENT - Search by title/keyword with time bounds [Required]GOOGLECALENDAR_EVENTS_LIST - List events in a time range [Alternative]GOOGLECALENDAR_EVENTS_INSTANCES - List instances of a recurring event [Optional]Key parameters:
query / q: Free-text search (matches summary, description, location, attendees)timeMin: Lower bound (RFC3339 with timezone offset, e.g., '2024-01-01T00:00:00-08:00')timeMax: Upper bound (RFC3339 with timezone offset)singleEvents: true to expand recurring events into instancesorderBy: 'startTime' (requires singleEvents=true) or 'updated'maxResults: Results per page (max 2500)Pitfalls:
timeMin/timeMax scans the full calendar and can be slowpageToken in response means more results; paginate until absentorderBy='startTime' requires singleEvents=trueWhen to use: User wants to add, remove, or update event attendees
Tool sequence:
GOOGLECALENDAR_FIND_EVENT or GOOGLECALENDAR_EVENTS_LIST - Find the event [Prerequisite]GOOGLECALENDAR_PATCH_EVENT - Add attendees (replaces entire attendees list) [Required]GOOGLECALENDAR_REMOVE_ATTENDEE - Remove a specific attendee by email [Required]Key parameters:
event_id: Unique event identifier (opaque string, NOT the event title)attendees: Full list of attendee emails (PATCH replaces entire list)attendee_email: Email to removesend_updates: 'all', 'externalOnly', or 'none'Pitfalls:
event_id is a technical identifier, NOT the event title; always search first to get the IDPATCH_EVENT attendees field replaces the entire list; include existing attendees to avoid removing themGMAIL_SEARCH_PEOPLE to resolve names to emails before managing attendeesWhen to use: User wants to find available time slots or check busy periods
Tool sequence:
GOOGLECALENDAR_LIST_CALENDARS - Identify calendars to check [Prerequisite]GOOGLECALENDAR_GET_CURRENT_DATE_TIME - Get current time with timezone [Optional]GOOGLECALENDAR_FIND_FREE_SLOTS - Find free intervals across calendars [Required]GOOGLECALENDAR_FREE_BUSY_QUERY - Get raw busy periods for computing gaps [Fallback]GOOGLECALENDAR_CREATE_EVENT - Book a confirmed slot [Required]Key parameters:
items: List of calendar IDs to check (e.g., ['primary'])time_min/time_max: Query interval (defaults to current day if omitted)timezone: IANA timezone for interpreting naive timestampscalendarExpansionMax: Max calendars (1-50)groupExpansionMax: Max members per group (1-100)Pitfalls:
GOOGLECALENDAR_FREE_BUSY_QUERY requires RFC3339 timestamps with timezoneGOOGLECALENDAR_LIST_CALENDARS to enumerate all calendarsGOOGLECALENDAR_FIND_EVENT or GOOGLECALENDAR_EVENTS_LISTGMAIL_SEARCH_PEOPLEGOOGLECALENDAR_GET_CURRENT_DATE_TIME to get current time in user's timezoneGOOGLECALENDAR_EVENTS_LIST returns nextPageToken; iterate until absentGOOGLECALENDAR_LIST_CALENDARS also paginates; use page_tokenevent_duration_minutes max 59; use hours for longer durations| Task | Tool Slug | Key Params |
|---|---|---|
| List calendars | GOOGLECALENDAR_LIST_CALENDARS |
max_results |
| Create event | GOOGLECALENDAR_CREATE_EVENT |
start_datetime, timezone, summary |
| Update event | GOOGLECALENDAR_PATCH_EVENT |
calendar_id, event_id, fields to update |
| Delete event | GOOGLECALENDAR_DELETE_EVENT |
calendar_id, event_id |
| Search events | GOOGLECALENDAR_FIND_EVENT |
query, timeMin, timeMax |
| List events | GOOGLECALENDAR_EVENTS_LIST |
calendarId, timeMin, timeMax |
| Recurring instances | GOOGLECALENDAR_EVENTS_INSTANCES |
calendarId, eventId |
| Find free slots | GOOGLECALENDAR_FIND_FREE_SLOTS |
items, time_min, time_max, timezone |
| Free/busy query | GOOGLECALENDAR_FREE_BUSY_QUERY |
timeMin, timeMax, items |
| Remove attendee | GOOGLECALENDAR_REMOVE_ATTENDEE |
event_id, attendee_email |
| Get current time | GOOGLECALENDAR_GET_CURRENT_DATE_TIME |
timezone |
| Get calendar | GOOGLECALENDAR_GET_CALENDAR |
calendar_id |
Powered by Composio
Prerequisites
Time Estimate
15-45 minutes depending on use case complexity
Steps
Common Pitfalls
✓ Do
✗ Don't
💡 Pro Tips
✓ Use when
Use when skill capabilities match your task, clear ROI on time saved, and you can validate outputs. Best for repetitive tasks, learning, and quality improvement.
✗ Avoid when
Avoid when task requires deep expertise you can't validate, involves sensitive decisions, or when learning process is more valuable than speed of completion.
kostja94/marketing-skills
BuilderIO/skills
kunchenguid/no-mistakes
jwynia/agent-skills
mindrally/skills
github/awesome-copilot
google-calendar-automation has been reliable in day-to-day use. Documentation quality is above average for community skills.
Solid pick for teams standardizing on skills: google-calendar-automation is focused, and the summary matches what you get after install.
google-calendar-automation fits our agent workflows well — practical, well scoped, and easy to wire into existing repos.
We added google-calendar-automation from the explainx registry; install was straightforward and the SKILL.md answered most questions upfront.
google-calendar-automation fits our agent workflows well — practical, well scoped, and easy to wire into existing repos.
We added google-calendar-automation from the explainx registry; install was straightforward and the SKILL.md answered most questions upfront.
google-calendar-automation has been reliable in day-to-day use. Documentation quality is above average for community skills.
Keeps context tight: google-calendar-automation is the kind of skill you can hand to a new teammate without a long onboarding doc.
Useful defaults in google-calendar-automation — fewer surprises than typical one-off scripts, and it plays nicely with `npx skills` flows.
google-calendar-automation is among the better-maintained entries we tried; worth keeping pinned for repeat workflows.
showing 1-10 of 30