
Recipe Batch Invite To Event
- 24.2k installs
- 30k repo stars
- Updated July 22, 2026
- googleworkspace/cli
recipe-batch-invite-to-event is a Google Workspace CLI recipe that adds multiple attendees to calendar events and notifies them.
About
recipe-batch-invite-to-event is a Google Workspace CLI recipe that adds multiple attendees to an existing Google Calendar event and sends notifications. Software engineers use it to automate event attendee management. It patches calendar events with new attendees and triggers notifications to all participants.
- Adds multiple attendees to calendar events programmatically
- Sends notifications to all added attendees
- Patches existing events without manual UI
Recipe Batch Invite To Event by the numbers
- 24,197 all-time installs (skills.sh)
- +800 installs in the week ending Jul 28, 2026 (Skillselion tracking)
- Ranked #45 of 690 Office & Documents skills by installs in the Skillselion catalog
- Security screen: LOW risk (skills.sh audit)
- Data as of Jul 28, 2026 (Skillselion catalog sync)
recipe-batch-invite-to-event capabilities & compatibility
- Works with
- gmail · google drive
- Use cases
- project management · orchestration
What recipe-batch-invite-to-event says it does
Add a list of attendees to an existing Google Calendar event and send notifications.
npx skills add https://github.com/googleworkspace/cli --skill recipe-batch-invite-to-eventAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| Installs | 24.2k |
|---|---|
| repo stars | ★ 30k |
| Security audit | 3 / 3 scanners passed |
| Last updated | July 22, 2026 |
| Repository | googleworkspace/cli ↗ |
How do you bulk add Google Calendar event attendees?
Automate bulk attendee addition and notification for calendar events
Who is it for?
Automated bulk attendee invitations to events
Skip if: Teams without gws installed or anyone creating brand-new events from scratch instead of patching an existing event.
When should I use this skill?
You need to add multiple people to a calendar event programmatically
What you get
Updated Google Calendar event with new attendee list and sent invite notifications
- Updated calendar event with attendee list
- Sent attendee notifications
By the numbers
- Recipe metadata version 0.22.5
- Requires gws binary and gws-calendar prerequisite skill
Files
Add Multiple Attendees to a Calendar Event
PREREQUISITE: Load the following skills to execute this recipe: gws-calendarAdd 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 skills
FAQ
What prerequisites does recipe-batch-invite-to-event need?
recipe-batch-invite-to-event requires the gws binary and the gws-calendar skill loaded first. The recipe metadata is version 0.22.5 and lives in the googleworkspace/cli scheduling domain.
Which gws commands add bulk calendar attendees?
recipe-batch-invite-to-event runs gws calendar events get to load the event, then gws calendar events patch to append attendees and trigger notifications. Provide calendarId and eventId in the JSON params.
Is Recipe Batch Invite To Event safe to install?
skills.sh reports 3 of 3 security scanners passed. Review the Security Audits panel on this page before installing in production.