skills$openclaw/calendar
xejrax4.1k

by xejrax

calendar – OpenClaw Skill

calendar is an OpenClaw Skills integration for coding workflows. Manage Google Calendar events using `gcalcli`. Create, list, and delete calendar events from the CLI.

4.1k stars3.6k forksSecurity L1
Updated Feb 7, 2026Created Feb 7, 2026coding

Skill Snapshot

namecalendar
descriptionManage Google Calendar events using `gcalcli`. Create, list, and delete calendar events from the CLI. OpenClaw Skills integration.
ownerxejrax
repositoryxejrax/brainz-calendar
languageMarkdown
licenseMIT
topics
securityL1
installopenclaw add @xejrax/brainz-calendar
last updatedFeb 7, 2026

Maintainer

xejrax

xejrax

Maintains calendar in the OpenClaw Skills directory.

View GitHub profile
File Explorer
3 files
.
_meta.json
275 B
CLAUDE.md
303 B
SKILL.md
1.0 KB
SKILL.md

name: calendar description: "Manage Google Calendar events using gcalcli. Create, list, and delete calendar events from the CLI." metadata: { "openclaw": { "emoji": "📅", "requires": { "bins": ["gcalcli"] }, "install": [ { "id": "pip", "kind": "pip", "package": "gcalcli", "bins": ["gcalcli"], "label": "Install gcalcli (pip)", }, ], }, }

Calendar Skill

Use gcalcli to interact with Google Calendar. Requires GOOGLE_CALENDAR_API_KEY (or CALDAV_URL/CALDAV_USER/CALDAV_PASS for CalDAV).

Listing Events

List upcoming events in a date range:

gcalcli agenda "2026-02-03" "2026-02-10"

Creating Events

Add a new calendar event:

gcalcli add --title "Team sync" --when "2026-02-04 10:00" --duration 30

Deleting Events

Delete an event by search term:

gcalcli delete "Team sync"

Install

pip install gcalcli
README.md

No README available.

Permissions & Security

Security level L1: Low-risk skills with minimal permissions. Review inputs and outputs before running in production.

Requirements

  • OpenClaw CLI installed and configured.
  • Language: Markdown
  • License: MIT
  • Topics:

FAQ

How do I install calendar?

Run openclaw add @xejrax/brainz-calendar in your terminal. This installs calendar into your OpenClaw Skills catalog.

Does this skill run locally or in the cloud?

OpenClaw Skills execute locally by default. Review the SKILL.md and permissions before running any skill.

Where can I verify the source code?

The source repository is available at https://github.com/openclaw/skills/tree/main/skills/xejrax/brainz-calendar. Review commits and README documentation before installing.