From 6099abe989066df2be24f24895e62c0b9bce34a3 Mon Sep 17 00:00:00 2001 From: happybell80 Date: Fri, 3 Apr 2026 20:29:09 +0900 Subject: [PATCH] =?UTF-8?q?fix:=20SKILL.md=20frontmatter=EC=97=90=20endpoi?= =?UTF-8?q?nts=20=EC=84=B9=EC=85=98=20=EC=B6=94=EA=B0=80=20(executor=20HTT?= =?UTF-8?q?P=20=EB=A9=94=EC=84=9C=EB=93=9C=20SSOT)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 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) --- skills/skill-calendar/SKILL.md | 4 ++++ skills/skill-email/SKILL.md | 4 ++++ 2 files changed, 8 insertions(+) diff --git a/skills/skill-calendar/SKILL.md b/skills/skill-calendar/SKILL.md index 417fb73..0390e71 100644 --- a/skills/skill-calendar/SKILL.md +++ b/skills/skill-calendar/SKILL.md @@ -4,6 +4,10 @@ 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 diff --git a/skills/skill-email/SKILL.md b/skills/skill-email/SKILL.md index f61424b..782a5ea 100644 --- a/skills/skill-email/SKILL.md +++ b/skills/skill-email/SKILL.md @@ -4,6 +4,10 @@ description: Gmail API를 통한 이메일 읽기·쓰기·요약. 사용자가 runtime: kind: external_http service_url_env: SKILL_EMAIL_URL + endpoints: + send: { method: POST, path: /send } + read: { method: GET, path: /messages } + process: { method: POST, path: /process } --- # skill-email