Calendar Generator
/install ics-generator
ics‑generator
When to use
When you need to convert a schedule, study plan, or task list into an iCalendar (.ics) file that can be imported into Google Calendar or any other iCalendar‑compatible client.
Workflow Overview
-
Collect structured events – each event must contain: -
summary(string) -description(string, optional) -start(ISO‑8601 date/time or JSDate) -end(ISO‑8601 date/time or JSDate) -colorId(Google Calendar colour ID, optional) -
Chunking / sequential dates - First chunk – supply the intended start date (e.g.,
2026‑05‑31T09:00:00Z). - Subsequent chunks – pass the last date of the previous chunk (via thelastDatefield). The skill will automatically shift the next chunk’s start date forward by one day, guaranteeing a clean “one‑day‑gap” between chunks. -
Run the skill – invoke the
runfunction exported byindex.jswith the event array and optionallastDate.
Implementation Notes
| Feature | Details |
|---|---|
| Google‑Calendar compatibility | Automatically injects the required headers:\x3Cbr>PRODID:-//Google Inc//Google Calendar 70.6//EN \x3Cbr>CALSCALE:GREGORIAN |
| UTC enforcement | All start/end times are normalized to UTC and formatted as YYYYMMDDTHHMMSSZ. Google Calendar accepts this exact format without further conversion. |
| Unique identifiers | Each event receives a UUID‑v4‑derived UID (event-\x3Cuuid>) so calendar clients can correctly sync updates. |
| Color handling | If a colorId is supplied, it’s added as X‑GOOGLE‑CALENDAR‑COLOR:\x3Cid> inside the VEVENT block. |
| Output | Returns a complete .ics string wrapped in BEGIN:VCALENDAR … END:VCALENDAR. Every VEVENT ends with END:VEVENT and the final block ends with END:VCALENDAR. |
| Dependencies | Node ≥ 20 (for crypto.randomUUID()). No external npm packages—pure JavaScript plus Node’s built‑in crypto module. |
| License | MIT – free to copy, modify, and share. |
Why the specific PRODID / CALSCALE?
From community feedback, Google Calendar only imported the generated file when those exact values were present. A generic PRODID caused the “Unable to launch event” error; CALSCALE:GREGORIAN tells Google Calendar which calendar system to assume (Gregorian), which is required for proper time‑zone handling.
- 确保已安装 OpenClaw(本地或 Docker 部署)
- 在对话框中输入安装命令:
/install ics-generator - 安装完成后,直接呼叫该 Skill 的名称或使用
/ics-generator触发 - 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
Calendar Generator 是什么?
Generates Google Calendar‑compatible .ics files from structured event data. 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 36 次。
如何安装 Calendar Generator?
在 OpenClaw 或 Claude Code 对话框中运行命令「/install ics-generator」即可一键安装,无需额外配置。
Calendar Generator 是免费的吗?
是的,Calendar Generator 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。
Calendar Generator 支持哪些平台?
Calendar Generator 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。
谁开发了 Calendar Generator?
由 Zhengqun Koo(@zhengqunkoo)开发并维护,当前版本 v1.0.0。