← Back to Skills Marketplace
zvirb

Google Calendar Create Event

by zvirb · GitHub ↗ · v1.0.3 · MIT-0
cross-platform ✓ Security Clean
57
Downloads
0
Stars
1
Active Installs
4
Versions
Install in OpenClaw
/install google-calendar-create-event
Description
Atomic node skill to create a Google Calendar event using the gog CLI.
README (SKILL.md)

Lean Philosophy (Principles)

  • Kaizen (改善): This skill is an atomic node, broken down into its simplest, smallest component to eliminate waste and ensure perfection.
  • Standardized Work (Hyojun Sagyo): This node represents the most efficient, standardized path for this specific task before automation.
  • Jidoka (自働化): This node includes autonomous defect detection. It relies on the CLI's self-healing loop and will report errors if the creation fails.

Google Calendar Create Event

This skill allows the agent to create a new event in Google Calendar using the native CLI.

Cognitive Directives

WHEN [A new event needs to be scheduled or created in the calendar] THEN [Execute the gog tool with the args parameter]

CRITICAL RULE: Do NOT use the --title, --start, or --end flags. They do not exist. You MUST use --summary for the title, and --from and --to for the time bounds. The time MUST be in RFC3339 format or relative (e.g. "tomorrow 16:00").

Schema Example

{
  "args": "calendar create primary --summary \"New Sync Meeting\" --from \"2026-04-26T10:00:00Z\" --to \"2026-04-26T11:00:00Z\" --json"
}

Expected Output

A JSON object confirming the created event details.

Usage Guidance
This skill is small and coherent, but check two things before installing: (1) Confirm the gog CLI on the agent host is the legitimate tool you expect and that its Google credentials (OAuth tokens/config files) are scoped appropriately — the skill will use whatever gog has access to. (2) Review how your agent runtime constructs and executes the supplied 'args' to avoid CLI injection: prefer structured argument passing (not raw shell concatenation) or add input validation/escaping. If you need tighter control, test in a sandbox account or restrict the agent's permission to call this skill autonomously.
Capability Analysis
Type: OpenClaw Skill Name: google-calendar-create-event Version: 1.0.3 The skill is a straightforward wrapper for the 'gog' CLI tool to create Google Calendar events. The documentation in SKILL.md and metadata in _meta.json are consistent with the stated purpose and contain no malicious instructions, suspicious execution patterns, or data exfiltration attempts.
Capability Assessment
Purpose & Capability
The skill's name and description state it will create Google Calendar events using the gog CLI and the SKILL.md requires the gog binary and instructs usage of 'gog ... args'. Requiring the gog binary is appropriate and proportionate to the stated purpose.
Instruction Scope
Instructions are minimal and stay within purpose (execute gog with provided args). They do not read files, env vars, or external endpoints. However, the SKILL.md gives the agent freedom to construct arbitrary CLI arguments and contains no guidance on input validation or escaping, which could lead to unintended CLI argument injection depending on how the agent runtime builds/executes the command.
Install Mechanism
No install spec and no code files — instruction-only skill. This is the lowest-risk install model; nothing is written to disk by the skill itself.
Credentials
The skill declares no environment variables or credentials. Note: the gog CLI itself typically uses local Google auth/config (OAuth tokens or config files). The skill does not request those explicitly, so it will operate with whatever credentials are already present for gog in the agent environment.
Persistence & Privilege
always is false and the skill is user-invocable. It does not request persistent presence or modify other skills/configuration. Autonomous invocation is allowed (platform default) but not a special privilege granted by the skill.
How to Use
  1. Make sure OpenClaw is installed (local or Docker)
  2. Run the install command in chat: /install google-calendar-create-event
  3. After installation, invoke the skill by name or use /google-calendar-create-event
  4. Provide required inputs per the skill's parameter spec and get structured output
Version History
v1.0.4
- Added a critical rule clarifying correct CLI argument usage: use --summary (not --title) for the event title, and --from/--to (not --start/--end) for time bounds. - Specified that time values must be in RFC3339 format or a supported relative format. - No changes to core functionality; documentation update only.
v1.0.3
- Updated command usage to specify passing arguments via the `args` parameter instead of the full command. - Modified schema example to reflect use of `args` for invoking the `gog` tool. - Updated cognitive directive instructions to match the new argument passing method.
v1.0.2
- Switched from using the GoogleWorkspace plugin to the native gog CLI for event creation. - Updated requirements to depend on the gog binary instead of the plugin. - Revised usage instructions and schema to reflect the CLI command format. - Updated expected output and descriptions to match the CLI approach.
v1.0.1
- Expanded operating system compatibility from Windows-only to all operating systems. - No changes to functionality or usage.
v1.0.0
- Initial release of the Google Calendar Create Event skill. - Enables creation of Google Calendar events using the google-workspace-plugin. - Includes lean principles: Kaizen (atomic node), standardized work, and autonomous defect detection. - Provides clear usage schema and expected JSON output.
Metadata
Slug google-calendar-create-event
Version 1.0.3
License MIT-0
All-time Installs 1
Active Installs 1
Total Versions 4
Frequently Asked Questions

What is Google Calendar Create Event?

Atomic node skill to create a Google Calendar event using the gog CLI. It is an AI Agent Skill for Claude Code / OpenClaw, with 57 downloads so far.

How do I install Google Calendar Create Event?

Run "/install google-calendar-create-event" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.

Is Google Calendar Create Event free?

Yes, Google Calendar Create Event is completely free, licensed under MIT-0. You can download, install and use it at no cost.

Which platforms does Google Calendar Create Event support?

Google Calendar Create Event is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).

Who created Google Calendar Create Event?

It is built and maintained by zvirb (@zvirb); the current version is v1.0.3.

💬 Comments