Install
openclaw skills install clawhub-dev-calendarCreate detailed ClawHub skill development calendars with milestones, Saskatchewan holidays, America/Regina timezone, and export to ICS, PDF, HTML, or visuals.
openclaw skills install clawhub-dev-calendarProduce tailored calendars for ClawHub skill dev workflows. Formats: ICS (calendar apps), PDF/HTML/PNG (via canvas/browser), markdown/text.
Key integrations:
Text monthly calendar:
exec command="cal -3 2026-04"
Project ICS:
exec "python3 scripts/generate_ics.py project.json dev.ics" pty=truemessage media="dev.ics" caption="Dev calendar attached"canvas present url="data:text/html;base64,base64 html" or browser/pdfExample project.json:
{
"name": "clawhub-dev-calendar",
"start": "2026-04-01T09:00:00-06:00",
"milestones": [
{"name": "Init", "hours": 2},
{"name": "Research/Plan", "hours": 4},
{"name": "Develop", "hours": 6},
{"name": "SKILL.md", "hours": 4},
{"name": "Test", "hours": 3},
{"name": "Publish", "hours": 1}
]
}
generate_ics.py: Generates ICS with milestones as events. Usage: python3 generate_ics.py project.json [output.ics]
Handles TZ offset, holiday checks (all-day events).dev_milestones.md: Standard phases, hours, cumulative timesask_holidays.json: YYYY list of stat holiday dates (2026-2027)project_template.json: Copy & customize input exampleLoad references/ as needed for planning.