Skip to main content

calendar

Google Calendar integration via Apps Script API. Use when checking schedule, meetings, today's events, weekly calendar, or adding events.

설치로 이동

소스 정보

저장소
aviz85/claude-skills-library
최근 소스 활동
2026년 1월 28일 11:27
감지된 SKILL.md 언어
영어
스타
49
포크
14

설치 방법

기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.

소스 파일 검토

설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.

파일 탐색기
4 개 파일

SKILL.md 표시 중

SKILL.md
소스 지침 · 읽기 전용 미리보기
name
calendar
description
Google Calendar integration via Apps Script API. Use when checking schedule, meetings, today's events, weekly calendar, or adding events.
version
1.0.0
author
aviz85
tags
["calendar","google","scheduling","productivity"]
setup
./SETUP.md
setup_complete
false
# 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 | Action | Description | Params | |--------|-------------|--------| | `today` | Today's events | - | | `week` | This week's events | - | | `upcoming` | Next N hours | `hours` (default: 4) | | `range` | Date range | `start`, `end` (ISO dates) | | `create` | Create event | `title`, `start`, `end`, `guests`, `description`, `location` | ## Examples ```bash # 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 ```json { "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
GitHub에서 보기