Google Calendar

👤 adrianmiller99 📦 v0.1.0 ⭐ 4.2 ⬇️ 17.6K 下載
🤖 AI-Agent 免費 🔑 需 API Key

📖 技能介紹


name: google-calendar description: Interact with Google Calendar via the Google Calendar API – list upcoming events, create new events, update or delete them. Use this skill when you need programmatic access to your calendar from OpenClaw.


Google Calendar Skill

Overview

This skill provides a thin wrapper around the Google Calendar REST API. It lets you: - list upcoming events (optionally filtered by time range or query) - add a new event with title, start/end time, description, location, and attendees - update an existing event by its ID - delete an event by its ID

The skill is implemented in Python (scripts/google_calendar.py). It expects the following environment variables to be set (you can store them securely with openclaw secret set):

GOOGLE_CLIENT_ID=…
GOOGLE_CLIENT_SECRET=…
GOOGLE_REFRESH_TOKEN=…   # obtained after OAuth consent
GOOGLE_CALENDAR_ID=primary   # or the ID of a specific calendar

The first time you run the skill you may need to perform an OAuth flow to obtain a refresh token – see the Setup section below.

Commands

google-calendar list [--from <ISO> --to <ISO> --max <N>]
google-calendar add   --title <title> [--start <ISO> --end <ISO>]
                     [--desc <description> --location <loc> --attendees <email1,email2>]
google-calendar update --event-id <id> [--title <title> ... other fields]
google-calendar delete --event-id <id>

All commands return a JSON payload printed to stdout. Errors are printed to stderr and cause a non‑zero exit code.

Setup

  1. Create a Google Cloud project and enable the Google Calendar API.
  2. Create OAuth credentials (type Desktop app). Note the client_id and client_secret.
  3. Run the helper script to obtain a refresh token: bash GOOGLE_CLIENT_ID=… GOOGLE_CLIENT_SECRET=… python3 -m google_calendar.auth It will open a browser (or print a URL you can open elsewhere) and ask you to grant access. After you approve, copy the refresh_token it prints.
  4. Store the credentials securely: bash openclaw secret set GOOGLE_CLIENT_ID <value> openclaw secret set GOOGLE_CLIENT_SECRET <value> openclaw secret set GOOGLE_REFRESH_TOKEN <value> openclaw secret set GOOGLE_CALENDAR_ID primary # optional

    訪問小蔥技能站7w4.net,解鎖更多實用的AI技能外掛。

  5. Install the required Python packages (once): bash pip install --user google-auth google-auth-oauthlib google-api-python-client

How it works (brief)

The script loads the credentials from the environment, refreshes the access token using the refresh token, builds a service = build('calendar', 'v3', credentials=creds), and then calls the appropriate API method.

References

  • Google Calendar API reference: https://developers.google.com/calendar/api/v3/reference
  • OAuth 2.0 for installed apps: https://developers.google.com/identity/protocols/oauth2/native-app

Note: This skill does not require a GUI; it works entirely via HTTP calls, so it is suitable for headless servers.

🤖 AI 評測

這是一個功能基本完整的 Google 日曆整合 Skill,可以滿足檢視、建立、修改和刪除日曆事件的需求。文件寫得非常詳細清楚,配置步驟有詳細指引,入門友好。不過實際使用中 token 管理有些混亂,容易出現配置問題。它適合需要程式化操作日曆的使用者,但如果你追求穩定可靠,可能需要等待它更成熟後再使用。

📊 多維度評分

適應性4.5
規範性4
有效性4.2
可靠性4.2
可信度4.2

📁 包含檔案 (5 個)

📄 SKILL.md 3 KB
📄 _meta.json 134 B
📄 scripts/google_calendar.py 5.5 KB
📄 scripts/refresh_token.py 2 KB
📄 scripts/venv/pyvenv.cfg 225 B