Manage Google Calendar events using `gcalcli`. Create, list, and delete calendar events from the CLI.
Scanned 9/7/2026
Install to Claude Code
npx -y skills add Demerzels-lab/elsamultiskillagent --skill brainz-calendar --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Brainz Calendar?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/demerzels-lab-brainz-calendar)More formats (shields.io, HTML) on the badges page.
---
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:
```bash
gcalcli agenda "2026-02-03" "2026-02-10"
```
## Creating Events
Add a new calendar event:
```bash
gcalcli add --title "Team sync" --when "2026-02-04 10:00" --duration 30
```
## Deleting Events
Delete an event by search term:
```bash
gcalcli delete "Team sync"
```
## Install
```bash
pip install gcalcli
```
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!