Agent Skills
› googleworkspace/cli
› recipe-batch-invite-to-event
recipe-batch-invite-to-event
GitHub该技能用于向现有的 Google Calendar 活动批量添加参会者并发送通知。通过获取事件、更新参会者列表及验证结果三个步骤,实现高效的日程协作管理。
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


