Loading...
Loading...
Accesses the Google Calendar and Tasks API. Use this skill to view or manage calendars, events, schedules, or Google tasks.
npx skill4agent add dotneet/claude-code-marketplace google-calendar~/.config/google-calendar/credentials.jsonpython3 -m venv ~/.config/google-calendar/venv
~/.config/google-calendar/venv/bin/pip install -r <skill_dir>/scripts/requirements.txt<skill_dir>/scripts/gcal-auth<skill_dir>/scripts/gcal-auth --scopes https://www.googleapis.com/auth/tasks<skill_dir>/scripts/gcal-auth --scopes https://www.googleapis.com/auth/calendar https://www.googleapis.com/auth/tasks<skill_dir>/scripts/gcal list-calendars~/.config/google-calendar/credentials.json~/.config/google-calendar/token.json--tokenGCAL_TOKEN_PATH2026-01-22T10:00:00-08:00YYYY-MM-DDend--time-zone<skill_dir>/scripts/gcal list-calendars<skill_dir>/scripts/gcal list-events --calendar-id primary --time-min 2026-01-22T00:00:00-08:00 --time-max 2026-01-22T23:59:59-08:00<skill_dir>/scripts/gcal list-events --calendar-id primary --q "standup" --time-min ... --time-max ...<skill_dir>/scripts/gcal create-event --calendar-id primary --summary "Review" --start 2026-01-22T10:00:00-08:00 --end 2026-01-22T11:00:00-08:00<skill_dir>/scripts/gcal update-event --calendar-id primary --event-id <id> --summary "New title"<skill_dir>/scripts/gcal delete-event --calendar-id primary --event-id <id><skill_dir>/scripts/gcal freebusy --calendars primary,team@company.com --time-min ... --time-max ...<skill_dir>/scripts/gcal list-tasklists<skill_dir>/scripts/gcal list-tasks --tasklist <tasklist_id><skill_dir>/scripts/gcal create-task --tasklist <tasklist_id> --title "Buy milk" --due 2026-01-22T10:00:00-08:00<skill_dir>/scripts/gcal update-task --tasklist <tasklist_id> --task-id <id> --notes "Bring receipt"<skill_dir>/scripts/gcal delete-task --tasklist <tasklist_id> --task-id <id>call<skill_dir>/scripts/gcal call GET /users/me/calendarList<skill_dir>/scripts/gcal call POST /calendars/primary/events --body-file /path/to/event.json--body-file--body--token