happybell80 3b9f8a8206 docs: SKILL.md runtime frontmatter 추가 + calendar 통합 + 머지충돌 해소
- 전 스킬 SKILL.md에 runtime (kind, service_url_env) frontmatter 추가
- calendar-delete/event/query 3분할 → skill-calendar 단일 스킬로 통합
- general_chat 스킬 신규 추가
- goosefarm-query, skill-translate 머지 충돌 마커 제거
- 용어집 정리

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-04-03 07:06:21 +09:00

1.0 KiB

name, description, runtime
name description runtime
skill-calendar 캘린더 일정 생성, 조회, 삭제. 사용자가 "내일 2시에 미팅 잡아줘", "이번 주 일정 보여줘", "그 일정 취소해줘" 등 일정 관련 요청을 할 때 사용.
kind service_url_env
external_http SKILL_CALENDAR_URL

skill-calendar

Google Calendar 통합 스킬.

언제 사용하는가

사용자가 일정을 등록, 확인, 삭제하려 할 때 사용한다.

일정 생성

POST /api/events

파라미터 타입 필수 설명
title string 필수 일정 제목
start string 필수 시작 일시. ISO 8601 형식 (예: 2026-04-04T14:00:00+09:00)
end string 필수 종료 일시. ISO 8601 형식. 미지정 시 start + 1시간
location string 선택 장소
description string 선택 설명, 메모
is_all_day boolean 선택 종일 이벤트 여부. 기본 false

일정 조회

GET /api/events

일정 삭제

DELETE /api/events/{event_id}