一键导入
google-calendar
Manage Google Calendar events. Use for listing, creating, updating, and deleting calendar events.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Manage Google Calendar events. Use for listing, creating, updating, and deleting calendar events.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
| name | google-calendar |
| description | Manage Google Calendar events. Use for listing, creating, updating, and deleting calendar events. |
Read and write Google Calendar events, search for matching events, and compute free time windows.
GOOGLE_CALENDAR_ACCESS_TOKEN - Google OAuth2 access token with calendar scope# List upcoming events
google-calendar list [-l limit] [-t timeMin] [-m timeMax] [-c calendarId]
# Search events by title, text, or attendee email
google-calendar search [-q "sprint review"] [--attendee "samuel@example.com"] [--next] [-l limit] [-t timeMin] [-m timeMax] [-c calendarId]
# Return free slots in a window
google-calendar availability --from 2024-01-15T09:00:00Z --to 2024-01-15T18:00:00Z [--duration 30m] [--workday-start 09:00] [--workday-end 18:00] [-l limit] [-c calendarId]
# Get event details
google-calendar get <eventId> [-c calendarId]
# Create an event
google-calendar create --summary "Meeting" --start 2024-01-15T09:00:00 --end 2024-01-15T10:00:00 [--description "Notes"] [--location "Office"] [--attendees "a@x.com,b@x.com"]
# Create all-day event
google-calendar create --summary "Holiday" --start 2024-01-15 --end 2024-01-16
# Update an event
google-calendar update <eventId> [--summary "New title"] [--start ...] [--end ...]
# Delete an event
google-calendar delete <eventId>
# List available calendars
google-calendar calendars
# List today's events
google-calendar today [-c calendarId]
JSON arrays for list and search. Example:
[
{ "id": "abc123", "summary": "Team Standup", "start": "2024-01-15T09:00:00-05:00", "end": "2024-01-15T09:30:00-05:00", "location": "Room 1" }
]
availability returns a JSON object with nextAvailable and slots.
Guides agents through isolated Git worktree setup, lifecycle commands, process cleanup, and per-worktree local development state. Use when creating, starting, stopping, inspecting, cleaning up, or troubleshooting Git worktree development environments or when a repository includes a worktree lifecycle CLI.
Continuously watch and fix release main CI until the branch is fully green and verified working. Use when asked to babysit CI, babysit CI release, monitor release main, run /loop for CI, run /goal until checks pass, or keep iterating until release main is green.
Fix flaky tests by repeatedly running the suite, collecting intermittent failures, and proving stability. Use when asked to fix flaky tests or require repeated/consecutive green test runs.
Manage LinkedIn messaging, profiles, posts, connections, and company pages via Unipile. Use for networking, content publishing, and lead engagement.
Scoped commit workflow with a bundled committer script that prevents accidental broad staging. Use when the user asks to commit, commit all, create a git commit, or handle commit-time staging in this repository.
Systematically QA a web application like a real user, triage issues by severity, fix scoped bugs when asked, verify fixes with evidence, and report ship readiness. Use when asked to QA, test a site or app, find bugs, test and fix, or check whether a feature works.