원클릭으로
schedule
Fetch and display Google Calendar schedule using gws CLI.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Fetch and display Google Calendar schedule using gws CLI.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Generate PR description and automatically create pull request on GitHub
Helps discover, evaluate, and install agent skills using the `gh skill` command (GitHub CLI). Use when the user asks "is there a skill for X", "find a skill that does Y", "how do I do X" where X might already exist as a skill, or expresses interest in extending agent capabilities.
Prepare topics for the next 1on1 session based on past logs and pending items.
Create a new 1on1 session note in Obsidian vault with person selection.
Summarize recent 1on1 sessions for a specific person from Obsidian vault.
Creates git commits with well-formatted messages. Checks for .gitmessage template in project root and follows its format, otherwise uses conventional commits. Analyzes existing commit history to match tone and style.
| name | schedule |
| description | Fetch and display Google Calendar schedule using gws CLI. |
| model | sonnet |
| allowedTools | ["Bash"] |
Fetch and display upcoming Google Calendar events via the gws CLI.
/schedule| Argument | Behavior |
|---|---|
| (none) | Today's events |
--tomorrow | Tomorrow's events |
--week | This week's events |
--days=N | Next N days' events |
--all | Show all calendars (combinable with above) |
Run the helper script with the parsed arguments:
bash ~/.claude/skills/schedule/fetch-schedule.sh [args]
The script handles:
count and events arrayParse the JSON response. Each event has: calendar, start, end, summary, location.
Distinguish event types by start format:
"2026-03-13" (date only, no T)"2026-03-13T10:00:00+09:00" (ISO datetime with T)Group by date, sort within each date:
Display format:
### 2026-03-13 (Thu)
[終日] オフィス
10:00-11:00 チーム定例
13:00-14:00 1on1 with XXX
### 2026-03-14 (Fri)
09:00-10:00 朝会
14:00-15:00 レビュー会
HH:MM-HH:MM (extract from ISO string, local time)[終日] prefixlocation is non-empty, append @ <location> after the summary--all is used, prepend [calendar_name] to each event summaryPrint a concise summary line:
Summary: 6 events (<range_description>)
Where <range_description> is: today, tomorrow, this week, or N days.