en un clic
schedule
Fetch and display Google Calendar schedule using gws CLI.
Installer avec Codex ou Claude Copiez ce prompt, collez-le dans Codex, Claude ou un autre assistant, puis laissez-le vérifier la page du skill et l'installer pour vous.
Menu
Fetch and display Google Calendar schedule using gws CLI.
Installer avec Codex ou Claude Copiez ce prompt, collez-le dans Codex, Claude ou un autre assistant, puis laissez-le vérifier la page du skill et l'installer pour vous.
Basé sur la classification professionnelle 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.