بنقرة واحدة
Google Calendar: Create a new event.
npx skills add https://github.com/dbmcco/claude-agent-toolkit --skill gws-calendar-insertانسخ والصق هذا الأمر في Claude Code لتثبيت المهارة
Google Calendar: Create a new event.
npx skills add https://github.com/dbmcco/claude-agent-toolkit --skill gws-calendar-insertانسخ والصق هذا الأمر في Claude Code لتثبيت المهارة
Default personal knowledge skill. Use for note-taking, searching notes, daily notes, knowledge lookup, or whenever the user refers to their notes or knowledge base. Prefer Folio over legacy Obsidian or deprecated paia-vault. Full access to the Folio personal knowledge app via localhost:3520.
Use when porting beads or superpowers workflows into Gemini CLI extensions or designing Gemini CLI command prompts that emulate multi-step agent workflows - covers extension layout, GEMINI.md context, command TOML patterns, and enforceable guardrails (tests/CI/pre-commit)
Use when creating GitHub issues, managing PRs, updating issue states, or searching repositories - provides bash scripts to interact with GitHub REST API without writing API calls directly
Use when agents need Google Workspace access across Drive, Docs, Sheets, Calendar, Slides, Tasks, People, or related GWS services; choose the correct gws-account profile before using gws CLI or domain-specific gws-* skills. Do not use Python gspread/googleapiclient or custom OAuth. Use msgvault for email search/reading.
Use when users need multi-provider image/video generation workflows in `<workspace-root>/grok-aurora-cli`, including running `grok make`, provider-specific `grok video` and image commands, tracking async tasks, stitching clips, and evaluating outputs with `grok eval`.
gws CLI shared reference. Use before any gws-* skill to choose the correct gws-account profile, avoid raw gws config drift, and apply shared Drive flags, auth checks, output formatting, and security rules.
| name | gws-calendar-insert |
| description | Google Calendar: Create a new event. |
| metadata | {"version":"0.22.1","openclaw":{"category":"productivity","requires":{"bins":["gws"]},"cliHelp":"gws calendar +insert --help"}} |
PREREQUISITE: Read
../gws-shared/SKILL.mdfor auth, global flags, and security rules. If missing, rungws generate-skillsto create it.
create a new event
gws calendar +insert --summary <TEXT> --start <TIME> --end <TIME>
| 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 |
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 alice@example.com
gws calendar +insert --summary 'Meet' --start ... --end ... --meet
[!CAUTION] This is a write command — confirm with the user before executing. Autonomous agents must not run this through the agent-safe profile. The primary default profile permits Workspace artifact writes but must not include Calendar write scopes; only
primary-humanmay create events, and only after the user explicitly approves the live calendar mutation.