happybell80 6099abe989 fix: SKILL.md frontmatter에 endpoints 섹션 추가 (executor HTTP 메서드 SSOT)
- skill-calendar: create_event(POST), list_events(GET), delete_event(DELETE)
- skill-email: send(POST), read(GET), process(POST)

연결: rb8001 PR #188

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

41 lines
1.2 KiB
Markdown

---
name: skill-calendar
description: 캘린더 일정 생성, 조회, 삭제. 사용자가 "내일 2시에 미팅 잡아줘", "이번 주 일정 보여줘", "그 일정 취소해줘" 등 일정 관련 요청을 할 때 사용.
runtime:
kind: external_http
service_url_env: SKILL_CALENDAR_URL
endpoints:
create_event: { method: POST, path: /api/events }
list_events: { method: GET, path: /api/events }
delete_event: { method: DELETE, path: "/api/events/{event_id}" }
---
# 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}