Recipe Batch Invite To Event

v1.0.12

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

0· 396·10 current·10 all-time
Security Scan
VirusTotalVirusTotal
Benign
View report →
OpenClawOpenClaw
Benign
high confidence
Purpose & Capability
Name/description match the runtime instructions. The skill requires the gws binary and the gws-calendar skill, which are appropriate for interacting with Google Calendar. There are no unrelated binaries, env vars, or config paths requested.
Instruction Scope
SKILL.md explicitly shows the gws commands to fetch an event, patch attendees, and re-fetch for verification. The instructions do not ask the agent to read unrelated files, search system state, or transmit data to endpoints other than those invoked via the gws CLI. The example includes hard-coded example emails and an EVENT_ID placeholder — user input or substitution is expected.
Install Mechanism
Instruction-only skill with no install spec or downloaded code. This minimizes on-disk risk; it assumes the gws binary is already available.
Credentials
No environment variables or secrets are requested by the skill itself. The gws CLI will use the user's existing Google credentials (outside this skill) to perform calendar operations, which is proportionate for this purpose.
Persistence & Privilege
always is false and the skill does not request persistent system presence or modify other skills' configs. Autonomous invocation is allowed (platform default) but is not combined with broad credentials or other concerning privileges.
Assessment
This recipe is coherent and appears to do exactly what it says: run the gws CLI to add attendees to a Google Calendar event and send notifications. Before installing/use: ensure you have the gws CLI installed and authenticated with an account that can modify the target calendar; replace EVENT_ID and example emails with the correct values; be aware that sendUpdates:'all' will email added attendees (check privacy/compliance); and review the required gws-calendar skill (it may have its own requirements/permissions). If you have concerns about automatic agent invocation, consider limiting when the agent can run this skill or require explicit user prompts before executing commands.

Like a lobster shell, security has layers — review code before you run it.

Runtime requirements

Binsgws
latestvk977fnekxaddrvmxg348aqxhns83z37m
396downloads
0stars
13versions
Updated 3w ago
v1.0.12
MIT-0

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"}'

Comments

Loading comments...