Now liveThe Skillselion MCP - thousands of ranked skills, loaded into your agent mid-task. No install.Get it →
aviz85 avatar

Calendar

  • 58 installs
  • 44 repo stars
  • Updated July 8, 2026
  • aviz85/claude-skills-library

calendar is a Claude Code skill that reads and manages Google Calendar events through a Google Apps Script web-app API.

About

A Claude Code skill that reads and manages Google Calendar events through a Google Apps Script web-app API. It supports querying today's, this week's, upcoming, and date-range events, and creating events with guests, description, and location. A developer sets up an Apps Script deployment with a secret token, then calls it via curl to check schedules or add meetings.

  • Google Calendar integration via a Google Apps Script web-app API
  • Query today, week, upcoming, and range events; create events with guest invites
  • Setup deploys an Apps Script web app with a token-guarded endpoint

Calendar by the numbers

  • 58 all-time installs (skills.sh)
  • Ranked #1,566 of 3,280 Productivity & Planning skills by installs in the Skillselion catalog
  • Data as of Jul 28, 2026 (Skillselion catalog sync)
At a glance

calendar capabilities & compatibility

Free Google Apps Script deployment; requires a Google account and a secret token you set.

Capabilities
project management
Works with
google drive
Use cases
project management
Pricing
Free
From the docs

What calendar says it does

Google Calendar integration via Apps Script API.
skill.md
Check and manage calendar events via Google Apps Script API.
skill.md
npx skills add https://github.com/aviz85/claude-skills-library --skill calendar

Add your badge

Show developers this skill is listed on Skillselion. Paste this into your README.

Listed on Skillselion
Installs58
repo stars44
Last updatedJuly 8, 2026
Repositoryaviz85/claude-skills-library

What it does

Check schedule or create Google Calendar events with guest invites via a token-guarded Apps Script API.

Who is it for?

Checking availability and creating calendar events with guest invites from Claude Code.

Skip if: Calendar providers other than Google, since it is built on Google Apps Script.

When should I use this skill?

You need to check your schedule, today's or weekly events, or add a calendar event.

What you get

Calendar events queried or created via the Apps Script API, with optional guest invites.

  • Queried calendar events
  • Created calendar events with optional invites

By the numbers

  • 5 API actions (today/week/upcoming/range/create)
  • default upcoming window 4 hours

Files

skill.mdMarkdownGitHub ↗

Google Calendar Integration

First time? If setup_complete: false above, run ./SETUP.md first, then set setup_complete: true.

Check and manage calendar events via Google Apps Script API.

Workflow

1. Check availability - Query today/week/upcoming events 2. Create events - Add with title, time, description, guests 3. Send invites - Use guests param to auto-send calendar invites

API Actions

ActionDescriptionParams
todayToday's events-
weekThis week's events-
upcomingNext N hourshours (default: 4)
rangeDate rangestart, end (ISO dates)
createCreate eventtitle, start, end, guests, description, location

Examples

# Today's events
curl "$URL?action=today&token=$TOKEN"

# Create meeting with guest invite
curl "$URL?action=create&title=Meeting&start=2026-01-15T10:00:00&end=2026-01-15T11:00:00&guests=email@example.com&token=$TOKEN"

Response Format

{
  "count": 1,
  "events": [
    {
      "title": "Meeting Name",
      "start": "2026-01-04T09:00:00.000Z",
      "end": "2026-01-04T10:00:00.000Z",
      "location": "Zoom link or address",
      "isAllDay": false
    }
  ]
}

Integration

Works with other skills:

  • zoom-meeting - Check conflicts before scheduling
  • whatsapp - Notify contacts about calendar invites

Related skills

FAQ

How does it connect to Google Calendar?

Through a Google Apps Script web app deployed as a token-guarded API endpoint.

What actions are supported?

today, week, upcoming, range, and create events with guests, description, and location.

This week in AI coding

Five minutes, every Monday - the tools, releases and tactics for developers.

unsubscribe anytime.