Agent Skills
› googleworkspace/cli
› recipe-batch-invite-to-event
recipe-batch-invite-to-event
GitHub向现有Google日历事件批量添加参会者并发送通知。通过获取事件、修补参会者列表及验证结果三步完成,依赖gws-calendar技能。
触发场景
需要为日历事件添加多个参会者
批量邀请用户参加已有会议
安装
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"}'
版本历史
- a3768d0 当前 2026-08-20 07:26


