googleworkspace/cli · Official

gws-calendar-insert

Google Calendar: Create a new event.

All-time #573 Trending #1124 Hot #5488 First seen Mar 4, 2026
8-week activity · all time api

Installation

$ npx skills add googleworkspace/cli --skill gws-calendar-insert

Summary

  • Create a new Google Calendar event with customizable details and optional attendees.
  • Requires three core flags: event summary, start time, and end time in ISO 8601 format Supports optional location, description, multiple attendees, and automatic Google Meet link generation Defaults to the primary calendar but accepts a custom calendar ID via the --calendar flag Write operation that should be confirmed with the user before execution

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Security audits

Partner security reviews for this skill.

agent-trust-hub SAFE

Analyzed Apr 1, 2026

The skill is a standard wrapper for the Google Workspace CLI tool (gws) used to create calendar events. It follows security best practices by including a caution for write operations and referencing a shared authentication configuration. No malicious patterns or security vulnerabilities were detected.

snyk LOW

Analyzed Apr 1, 2026

No issues detected.

socket Score 0.9000 · 0 alerts

Analyzed Apr 1, 2026

  • license 1
  • maintenance 1
  • quality 0.9
  • supply chain 1
  • vulnerability 1

0 alerts

Also in this package

Other skills from googleworkspace/cli · top by installs.

npx skills add googleworkspace/cli

Browse all from googleworkspace/cli

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Repository health

Stars 30.8K
License LICENSE
Default branch main
Open issues 129
Status Active

Skill metadata

Parsed from SKILL.md frontmatter.

Version0.22.5
Declared agents clawdbot
More metadata
version
0.22.5
openclaw
{"category":"productivity","requires":{"bins":["gws"]},"cliHelp":"gws calendar +insert --help"}

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 1,793 B
  • docs SUMMARY.md 63 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 43,200 installs

SKILL.md

calendar +insert

PREREQUISITE: Read ../gws-shared/SKILL.md for auth, global flags, and security rules. If missing, run gws generate-skills to create it.

create a new event

Usage

gws calendar +insert --summary <TEXT> --start <TIME> --end <TIME>

Flags

Flag Required Default Description
--calendar primary Calendar ID (default: primary)
--summary Event summary/title
--start Start time (ISO 8601, e.g., 2024-01-01T10:00:00Z)
--end End time (ISO 8601)
--location Event location
--description Event description/body
--attendee Attendee email (can be used multiple times)
--meet Add a Google Meet video conference link

Examples

gws calendar +insert --summary 'Standup' --start '2026-06-17T09:00:00-07:00' --end '2026-06-17T09:30:00-07:00'
gws calendar +insert --summary 'Review' --start ... --end ... --attendee [email protected]
gws calendar +insert --summary 'Meet' --start ... --end ... --meet

Tips

  • Use RFC3339 format for times (e.g. 2026-06-17T09:00:00-07:00).
  • The --meet flag automatically adds a Google Meet link to the event.

[!CAUTION]
This is a write command — confirm with the user before executing.

See Also

  • [gws-shared](../gws-shared/SKILL.md) — Global flags and auth
  • [gws-calendar](../gws-calendar/SKILL.md) — All manage calendars and events commands