happybell80 4caa96e40c fix: SKILL.md 계약 통일 — start_datetime/end_datetime, web_search, email endpoints
- skill-calendar: CRUD 파라미터 start_datetime/end_datetime 통일, end_datetime 선택화
- skill-email: email_read/email_send/email_summary 별칭 추가, user_id 제거(executor 자동 주입)
- web-search: name을 web_search로 변경 (LLM 반환값과 일치)

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-04-05 17:13:56 +09:00

47 lines
1.6 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 }
get_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_datetime | string | 필수 | 시작 일시. ISO 8601 형식 (예: 2026-04-04T14:00:00+09:00) |
| end_datetime | string | 필수 | 종료 일시. ISO 8601 형식. 미지정 시 start_datetime + 1시간 |
| location | string | 선택 | 장소 |
| description | string | 선택 | 설명, 메모 |
| is_all_day | boolean | 선택 | 종일 이벤트 여부. 기본 false |
## 일정 조회
GET /api/events
| 파라미터 | 타입 | 필수 | 설명 |
|---------|------|------|------|
| start_datetime | string | 필수 | 조회 시작 일시. ISO 8601 형식 (예: 2026-04-05T00:00:00+09:00) |
| end_datetime | string | 선택 | 조회 종료 일시. ISO 8601 형식. 미지정 시 start_datetime 당일 23:59:59 |
## 일정 삭제
DELETE /api/events/{event_id}