/install andrew-google-calendar
Google Calendar
Overview
Google Calendar API 를 ���� ���� ��� 조�, ��, ��, ���� � �� ������. OAuth 2.0 ��� ���� ���� �� �린�� �근����.
Setup
1. OAuth ������� �� ��
# Google Cloud Console �� OAuth ������� �� ����
# https://console.cloud.google.com/apis/credentials
# �� ��� � ����리� 복�
cp ~/Downloads/client_secret_*.json ~/.google-credentials.json
2. �존� ��
pip install google-api-python-client google-auth-httplib2 google-auth-oauthlib
3. �� ����
cd /Users/andrew/.openclaw/workspace/google-calendar
python3 scripts/oauth_setup.py
첫 ��� ����� �리고 Google ���� �그�� � ��� ����� ����.
Capabilities
�� 조�
��� �� ��:
"�� 7 � ��� 보��"
"�� ��� ��?"
"�� 주 �� 목� �려�"
��� 기� 조�:
"4 � 15 ���� 20 ��� ��� 보��"
�� ��
� �� ��:
"�� �� 2 �� � 미� �� ����, 1 �� ��, Zoom ��"
"�� 주 ��� 10 �� dentist ��, 30 �"
�� ��
�� �경:
"�� �� 2 � 미�� �� 3 �� ���"
"�� �목� '� 미�'�� '����� ��� 미�'�� �경���"
�� ��
�� 취�:
"�� �� 2 � 미� 취����"
Usage Examples
�� 1: ��� �� 조�
from scripts.calendar_ops import list_events, format_event
# �� 7 � �� 조�
events = list_events(max_results=10)
for event in events:
print(format_event(event))
�� 2: � �� ��
from scripts.calendar_ops import create_event
from datetime import datetime, timedelta
# �� �� 2 � �� ��
start = datetime.now() + timedelta(days=1, hours=14)
end = start + timedelta(hours=1)
event = create_event(
summary="� 미�",
start_time=start.isoformat(),
end_time=end.isoformat(),
description="주� ����� ���",
location="Zoom"
)
�� 3: �린� 목� ��
from scripts.oauth_setup import list_calendars
calendars = list_calendars()
for cal in calendars:
print(f"{cal['summary']} - {cal['accessRole']}")
Files Structure
google-calendar/
��� SKILL.md
��� scripts/
� ��� oauth_setup.py # OAuth 2.0 �� � ���� �리
� ��� calendar_ops.py # Calendar API �� ����
��� references/
Security Notes
- OAuth �����
~/.google-calendar-token.pickle� ����� - ������� ���
~/.google-credentials.json� ����� - � ����
.gitignore� ����� ���� - �� ��:
https://www.googleapis.com/auth/calendar(�기/�기 �체 �근)
Troubleshooting
"OAuth ������� �� ��� ����" ��:
- Google Cloud Console �� OAuth 2.0 ������� ��를 �� ����
client_secret_XXXXXX.json���~/.google-credentials.json�� 복�
�� ���:
- ���� ��� ���고 ���:
rm ~/.google-calendar-token.pickle - Google Cloud Console �� API ��� ��
�� ��:
- OAuth �� �면�� ��� �� ��
- ����� �� � ���
- Make sure OpenClaw is installed (local or Docker)
- Run the install command in chat:
/install andrew-google-calendar - After installation, invoke the skill by name or use
/andrew-google-calendar - Provide required inputs per the skill's parameter spec and get structured output
What is Andrew Google Calendar?
Google Calendar API ���� �� 조�, ��, ��, �� �리. OAuth 2.0 �� ��. ���� �� �린��� ��� ���고 �리�� � ��. It is an AI Agent Skill for Claude Code / OpenClaw, with 25 downloads so far.
How do I install Andrew Google Calendar?
Run "/install andrew-google-calendar" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.
Is Andrew Google Calendar free?
Yes, Andrew Google Calendar is completely free, licensed under MIT-0. You can download, install and use it at no cost.
Which platforms does Andrew Google Calendar support?
Andrew Google Calendar is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).
Who created Andrew Google Calendar?
It is built and maintained by 김현곤 (@ibluewind); the current version is v1.0.0.