π¦ ClawHub
Calendar reminder
by @cute-angel
ICS-backed reminder operations through the reminder worker API. Use when the user asks to create, list, cancel, or rotate reminder-style calendar items such...
TERMINAL
clawhub install openclaw-ics-reminderπ About This Skill
name: openclaw-ics-reminder description: ICS-backed reminder operations through the reminder worker API. Use when the user asks to create, list, cancel, or rotate reminder-style calendar items such as "remind me tomorrow at 3pm", "set a recurring reminder", "list my reminders", or "rotate my calendar feed token". homepage: https://github.com/Cute-angel/ics-reminder-skill metadata: {"clawdbot":{"emoji":"π ","skillKey":"ics-reminder","requires":{"bins":["node"],"env":["REMINDER_API_TOKEN","REMINDER_API_BASE_URL"]},"primaryEnv":"REMINDER_API_TOKEN"}}
ICS Reminder
Use this skill when the user intent is to create or manage a reminder-like event that should appear in a subscribed calendar feed.Reminder operations through scripts/reminder-client.mjs.
Create a reminder
node {baseDir}/scripts/reminder-client.mjs create --stdin
Required create fields:
titlestart_attimezoneOptional create fields:
noteslocationurlall_dayrrulealarm_offset_minutessource_textidempotency_keyList reminders
node {baseDir}/scripts/reminder-client.mjs list
Delete a reminder
node {baseDir}/scripts/reminder-client.mjs delete ""
Rotate ICS feed token
node {baseDir}/scripts/reminder-client.mjs rotate
Notes
REMINDER_API_TOKEN from the environment.REMINDER_API_BASE_URL from the environment.REMINDER_API_BASE_URL is missing, stop and ask for configuration instead of guessing a local or remote endpoint.scripts/reminder-client.mjs; do not embed raw HTTP calls in the skill.~/.openclaw/openclaw.json.π Tips & Best Practices
REMINDER_API_TOKEN from the environment.REMINDER_API_BASE_URL from the environment.REMINDER_API_BASE_URL is missing, stop and ask for configuration instead of guessing a local or remote endpoint.scripts/reminder-client.mjs; do not embed raw HTTP calls in the skill.~/.openclaw/openclaw.json.