← Back to list

calendar-api
by Eddale
⭐ 0🍴 0📅 Jan 25, 2026
SKILL.md
name: calendar-api description: Fetch Google Calendar events. Use when checking schedule, finding meetings, or verifying calendar entries. Invoked by morning-metrics, win-the-day, and other scheduling skills. allowed-tools: Bash, Read
Calendar API
What This Does
Fetches events from Google Calendar (all visible calendars including shared ones). Returns structured JSON for other skills to consume.
Instructions
Available Commands
Run the script with one of these flags:
| Flag | Usage | Description |
|---|---|---|
--today | --today | Today's events with location |
--upcoming | --upcoming 7 | Next N days (default 7) |
--search | --search "Gagan" | Find events matching term |
--range | --range 2026-01-15 2026-01-20 | Events in date range |
How to Invoke
python3 /Users/eddale/Documents/GitHub/powerhouse-lab/skills/calendar-api/scripts/fetch_calendar.py [flags]
Parsing the Output
The script returns JSON. Key fields:
{
"calendars": ["Ed Dale - Personal", "Edward Dale"],
"events": [
{
"time": "2026-01-13T09:00:00+10:00",
"summary": "David Smith and Ed Dale",
"calendar": "Edward Dale",
"location": "https://zoom.us/...",
"attendees": ["david@example.com"],
"description": "Weekly sync"
}
],
"count": 5,
"status": "ok"
}
Common Queries
Check if a meeting exists:
python3 .../fetch_calendar.py --search "Gagan"
If count is 0, the meeting isn't on the calendar.
What's on today:
python3 .../fetch_calendar.py --today
Next week's schedule:
python3 .../fetch_calendar.py --upcoming 7
Examples
User: "Is the Gagan meeting on my calendar?"
Response flow:
- Run
--search "Gagan" - Check if count > 0
- If found: "Yes, [event summary] on [date/time]"
- If not found: "No meeting with 'Gagan' found in the next 7 days"
User: "What meetings do I have today?"
Response flow:
- Run
--today - List events chronologically with times and locations
Guidelines
- Read-only: This skill fetches data, it does not create or modify events
- Searches full event (title, attendees, description, location)
- Returns events from ALL visible calendars (personal + shared)
- Times are in local timezone (AEDT)
Score
Total Score
50/100
Based on repository quality metrics
✓SKILL.md
SKILL.mdファイルが含まれている
+20
○LICENSE
ライセンスが設定されている
0/10
○説明文
100文字以上の説明がある
0/10
○人気
GitHub Stars 100以上
0/15
○最近の活動
3ヶ月以内に更新がある
0/10
○フォーク
10回以上フォークされている
0/5
✓Issue管理
オープンIssueが50未満
+5
✓言語
プログラミング言語が設定されている
+5
○タグ
1つ以上のタグが設定されている
0/5
Reviews
💬
Reviews coming soon