Agent Skills
› googleworkspace/cli
› recipe-batch-invite-to-event
recipe-batch-invite-to-event
GitHub向现有Google日历事件批量添加参会者并发送通知,通过获取、补丁更新和验证步骤完成。
Trigger Scenarios
需要邀请多人参加日程时
批量更新会议参与者列表
Install
npx skills add googleworkspace/cli --skill recipe-batch-invite-to-event -g -y
SKILL.md
Frontmatter
{
"name": "recipe-batch-invite-to-event",
"metadata": {
"version": "0.22.5",
"openclaw": {
"domain": "scheduling",
"category": "recipe",
"requires": {
"bins": [
"gws"
],
"skills": [
"gws-calendar"
]
}
}
},
"description": "Add a list of attendees to an existing Google Calendar event and send notifications."
}
Add Multiple Attendees to a Calendar Event
PREREQUISITE: Load the following skills to execute this recipe:
gws-calendar
Add a list of attendees to an existing Google Calendar event and send notifications.
Steps
- Get the event:
gws calendar events get --params '{"calendarId": "primary", "eventId": "EVENT_ID"}' - Add attendees:
gws calendar events patch --params '{"calendarId": "primary", "eventId": "EVENT_ID", "sendUpdates": "all"}' --json '{"attendees": [{"email": "alice@company.com"}, {"email": "bob@company.com"}, {"email": "carol@company.com"}]}' - Verify attendees:
gws calendar events get --params '{"calendarId": "primary", "eventId": "EVENT_ID"}'
Version History
- a3768d0 Current 2026-08-20 07:26


