TopRank Skills

Home / Claw Skills / 其他 / recipe-batch-invite-to-event
Official OpenClaw rules 15%

recipe-batch-invite-to-event

Add a list of attendees to an existing Google Calendar event and send notifications.

Stars

0

Installs

0

Status

ACTIVE

Visibility

PUBLIC

安装方式

直接复制以下提示词,发送给你的 AI 助手即可完成安装。

请先检查是否已安装 SkillHub 商店,若未安装,请根据 https://skillhub-1388575217.cos.ap-guangzhou.myqcloud.com/install/skillhub.md 安装 SkillHub 商店,然后安装 recipe-batch-invite-to-event 技能。 若已安装,则直接安装 recipe-batch-invite-to-event 技能。

Overview

Skill Key
googleworkspace-bot/recipe-batch-invite-to-event
Author
googleworkspace-bot
Source Repo
openclaw/skills
Version
1.0.0
Source Path
skills/googleworkspace-bot/recipe-batch-invite-to-event
Latest Commit SHA
73333f50d5ee9c7ab33d1e952b7aed52e1511bfd

Extracted Content

SKILL.md excerpt

# 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

1. Get the event: `gws calendar events get --params '{"calendarId": "primary", "eventId": "EVENT_ID"}'`
2. 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"}]}'`
3. Verify attendees: `gws calendar events get --params '{"calendarId": "primary", "eventId": "EVENT_ID"}'`

Related Claw Skills