.claude/skills/google-calendar/SKILL.md
gogcli를 사용하여 Google Calendar 일정을 조회, 검색, 생성, 수정, 삭제하는 skill. "일정 확인해줘", "캘린더 보여줘", "오늘 일정", "이번주 일정", "미팅 잡아줘", "일정 추가", "calendar events", "일정 생성", "스케줄 확인", "빈 시간 확인", "일정 삭제" 등 Google Calendar 관련 요청에 트리거된다.
npx skillsauth add greatsumini/cc-system google-calendarInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
gogcli(gog) CLI를 사용하여 Google Calendar 일정을 조회, 검색, 생성, 수정, 삭제한다.
google-calendar/
├── SKILL.md
└── references/
└── gog-calendar-commands.md # 주요 명령어 레퍼런스
스크립트 없이 gog CLI를 직접 실행한다.
which gog
명령이 실패하면 사용자에게 설치를 안내한다:
gogcli 설치 안내
brew install gogcli설치 완료 후 다시 시도해주세요.
설치가 확인되면 다음 단계로 진행한다.
gog auth list
계정이 없으면 OAuth 설정을 안내한다:
Google Calendar 인증 설정 가이드
- Google Cloud Console에서 프로젝트 생성
- Google Calendar API 활성화
- OAuth 동의 화면 설정 → 테스트 사용자 추가
- OAuth 클라이언트 생성 → "Desktop app" → JSON 다운로드
- 터미널에서 아래 명령 실행:
gog auth credentials ~/Downloads/client_secret_....json gog auth add <[email protected]> --services calendar브라우저가 열리면 Google 계정으로 로그인하여 권한을 허용해주세요.
인증이 확인되면 GOG_ACCOUNT 환경변수 또는 --account 플래그로 계정을 지정한다.
사용자 요청을 아래 중 하나로 분류하여 실행한다. 캘린더 ID는 기본적으로 primary를 사용한다.
gog calendar calendars --json
gog calendar events primary --today --json
gog calendar events primary --week --json
gog calendar events primary --days <N> --json
gog calendar events primary --from <시작일> --to <종료일> --json
--from today --to friday--from 2026-04-01T00:00:00Z --to 2026-04-08T00:00:00Zgog calendar events --all --today --json
gog calendar search "<키워드>" --today --json
gog calendar search "<키워드>" --days <N> --json
검색 기본 범위: 30일 전 ~ 90일 후 (--from/--to로 조정 가능)
gog calendar create primary \
--summary "<일정 제목>" \
--from <시작시간> \
--to <종료시간> \
[--attendees "[email protected],[email protected]"] \
[--location "<장소>"] \
[--send-updates all]
종일 일정:
gog calendar create primary \
--summary "<일정 제목>" \
--from 2026-04-15 \
--to 2026-04-16 \
--all-day
반복 일정:
gog calendar create primary \
--summary "<일정 제목>" \
--from <시작시간> \
--to <종료시간> \
--rrule "RRULE:FREQ=WEEKLY;COUNT=4"
gog calendar update primary <eventId> \
--summary "<수정된 제목>" \
--from <새 시작시간> \
--to <새 종료시간>
참석자 추가 (기존 유지):
gog calendar update primary <eventId> \
--add-attendee "[email protected]"
gog calendar delete primary <eventId> --force
참석자에게 알림 전송:
gog calendar delete primary <eventId> --send-updates all --force
gog calendar respond primary <eventId> --status accepted
gog calendar respond primary <eventId> --status declined
gog calendar respond primary <eventId> --status tentative
gog calendar freebusy --calendars "primary" \
--from <시작시간> \
--to <종료시간> \
--json
gog calendar conflicts --all --today --json
일정 생성, 수정, 삭제 전에 반드시 사용자에게 아래 내용을 확인받는다:
JSON 결과를 파싱하여 사용자에게 읽기 좋게 정리한다:
--json 플래그를 붙여 파싱 가능한 출력을 얻는다primary를 기본값으로 사용한다GOG_ACCOUNT 환경변수가 설정되어 있으면 우선 사용한다--send-updates all을 명시하지 않으면 참석자에게 알림이 가지 않는다.GOG_TIMEZONE 환경변수로 기본 출력 타임존을 설정할 수 있다 (예: Asia/Seoul).testing
A portable orchestrator that completes a high-level task through 5 stages — clarify → context-gather → plan → implement → verify. Each stage hands off via file artifacts, and a stage is skipped when its artifact already exists. The plan is decomposed into a task graph (DAG); independent nodes run in parallel, dependent nodes run in order.
data-ai
유튜브 채널을 등록하고 새 컨텐츠를 수집하여 자막 기반 요약을 생성하는 skill. 사용자가 (1) 유튜브 채널 등록/관리를 요청하거나, (2) 등록된 채널의 새 영상 수집을 요청하거나, (3) 유튜브 영상 요약을 요청할 때 사용. 데이터는 .reference/ 폴더에 YAML 형식으로 저장됨.
tools
Create specialized Claude Code sub-agents with custom system prompts and tool configurations. Use when users ask to create a new sub-agent, custom agent, specialized assistant, or want to configure task-specific AI workflows for Claude Code.
development
Guide for creating Claude Code slash commands. Use when the user wants to create a new slash command, update an existing slash command, or asks about slash command syntax, frontmatter options, or best practices.