skills$openclaw/advanced-calendar
toughworm6.0k

by toughworm

advanced-calendar – OpenClaw Skill

advanced-calendar is an OpenClaw Skills integration for planning workflows. Advanced calendar skill with natural language processing, automatic reminders, and multi-channel notifications

6.0k stars5.7k forksSecurity L1
Updated Feb 7, 2026Created Feb 7, 2026planning

Skill Snapshot

nameadvanced-calendar
descriptionAdvanced calendar skill with natural language processing, automatic reminders, and multi-channel notifications OpenClaw Skills integration.
ownertoughworm
repositorytoughworm/advanced-calendar
languageMarkdown
licenseMIT
topics
securityL1
installopenclaw add @toughworm/advanced-calendar
last updatedFeb 7, 2026

Maintainer

toughworm

toughworm

Maintains advanced-calendar in the OpenClaw Skills directory.

View GitHub profile
File Explorer
22 files
.
docs
usage.md
1.5 KB
scripts
calendar.py
11.5 KB
calendar.sh
345 B
check-reminders.sh
295 B
check-repeat-reminders.sh
332 B
create-event-interactive.sh
1.8 KB
parse-and-create-event.sh
5.0 KB
reminders.sh
281 B
tests
test_basic.py
2.0 KB
_meta.json
643 B
CHANGELOG.md
3.0 KB
intent_handler.py
11.1 KB
openclaw_integration.py
8.9 KB
package.json
937 B
PUBLISH.md
2.3 KB
README.md
2.2 KB
release-notes-v1.02.md
1.5 KB
SKILL.md
6.6 KB
UPDATES.md
1.2 KB
SKILL.md

name: advanced-calendar description: Advanced calendar skill with natural language processing, automatic reminders, and multi-channel notifications author: 小机与老板 version: 1.0.2 license: MIT tags: [calendar, scheduling, reminders, productivity, natural-language, automation, multi-channel] repository: https://github.com/openclaw/advanced-calendar

Advanced Calendar Skill for OpenClaw

A comprehensive calendar system with natural language processing, automatic reminders, and seamless WhatsApp notifications.

Features

  • Natural Language Processing: Create events using everyday language like "Schedule a meeting tomorrow at 3pm for 1 hour, remind me 30 minutes before"
  • Smart Parsing: Automatically detects dates, times, durations, locations, and reminder preferences from your input
  • Interactive Creation: When information is incomplete, the system asks for what it needs
  • Multi-Channel Notifications: Sends notifications via WhatsApp and other configured channels (Discord, Telegram, Signal, etc.)
  • Persistent Reminders: If no acknowledgment ("OK", "Got it", "Received", etc.) is received, reminders repeat every 15 minutes like a snooze alarm
  • Flexible Reminders: Set reminders minutes, hours, or days in advance
  • Daily Summary: Built-in daily summary feature - get a complete overview of today's schedule every morning
  • Complete CRUD Operations: Create, read, update, delete calendar events
  • Local Storage: All data stored locally, no external dependencies
  • Cron Integration: Automatic reminder checking every 5 minutes and optional daily morning summary

Installation

clawhub install advanced-calendar

Usage

Natural Language Commands

The skill understands natural language commands:

"Create a meeting tomorrow at 2pm to discuss the project, lasting 1 hour, remind me 30 minutes before"
"Schedule a call with John next Tuesday at 10am, remind me 1 hour ahead"
"I have lunch with Sarah today at 12:30pm"
"Show me my calendar for this week"
"What meetings do I have tomorrow?"

Manual Commands

For more control, you can use structured commands:

# Create an event
calendar create --title "Event Title" --date YYYY-MM-DD --time HH:MM [--duration MINUTES] [--location LOCATION] [--description DESCRIPTION] [--reminder MINUTES_BEFORE]

# List upcoming events
calendar list [--days N] [--from YYYY-MM-DD] [--to YYYY-MM-DD]

# Get event details
calendar get --id EVENT_ID

# Update an event
calendar update --id EVENT_ID [--title TITLE] [--date YYYY-MM-DD] [--time HH:MM] [--duration MINUTES] [--location LOCATION] [--description DESCRIPTION] [--reminder MINUTES_BEFORE]

# Delete an event
calendar delete --id EVENT_ID

# Daily summary
calendar daily-summary

Integration

The skill automatically integrates with OpenClaw's natural language processing. Simply speak to your OpenClaw instance naturally about scheduling, and it will handle the calendar operations.

Configuration

After installation, you may want to configure:

  1. Multi-channel notifications (WhatsApp, Discord, Telegram, Signal, etc.)
  2. Default reminder time preferences
  3. Default event duration
  4. Repeat reminder intervals (default: every 15 minutes until acknowledged)
  5. Acknowledgment keywords (default: "OK", "Got it", "Received", "Understood", "Ack", etc.)

Examples

Basic Event Creation

User: "Schedule a team meeting tomorrow at 10am"
System: [Asks for missing details like duration and reminder]

Complete Event Specification

User: "I have a doctor appointment next Friday at 2:30pm, lasts 45 minutes, please remind me 2 hours before"
System: ✅ Created event: Doctor appointment
      Time: 2026-02-13 14:30, Duration: 45 minutes, Reminder: 120 minutes before

Event Querying

User: "What do I have scheduled this week?"
System: [Lists all events for the next 7 days]

Daily Summary

User: "Show me my schedule for today"
System: 📅 2026年02月03日 周二

      今日共有 3 个日程:

      1. 团队会议
         ⏰ 09:00
         📍 总部会议室

      2. 客户午餐
         ⏰ 12:30
         📍 赛特大厦

      3. 项目汇报
         ⏰ 15:00
         📝 季度项目进展汇报

      祝您今天顺利!

Automated Daily Summary (Optional)

You can configure automatic daily summaries to be sent every morning at 9:00 AM:

# Via OpenClaw Cron - add this job to send daily summary automatically
openclaw cron add \
  --name "daily-calendar-summary" \
  --schedule "0 9 * * *" \
  --command "calendar daily-summary"

Or via natural language:

User: "Set up a daily reminder every morning at 9am with my calendar summary"
System: ✅ Daily summary scheduled for 9:00 AM every day

Architecture

  • Natural Language Processor: Interprets human language into calendar events
  • Intent Detection: Identifies whether user wants to create, list, update, delete, or get daily summary of events
  • Information Extraction: Parses dates, times, durations, locations, and reminders from text
  • Interactive Handler: Manages conversations when information is incomplete
  • Daily Summary Generator: Creates formatted daily overview with all scheduled events
  • Storage Layer: JSON-based persistent storage
  • Multi-Channel Notification System: Automated reminders via WhatsApp, Discord, Telegram, Signal, and other configured channels
  • Persistent Reminder Engine: Snooze-alarm-style repeated notifications every 15 minutes until acknowledged
  • Acknowledgment Tracker: Monitors for user responses to stop repeated notifications
  • Cron Integration: Scheduled reminder checks and optional daily morning summaries

Technical Requirements

  • OpenClaw 1.0+
  • Python 3.6+
  • At least one notification channel configured (WhatsApp, Discord, Telegram, Signal, etc.)

Dependencies

This skill requires the following Python packages which will be installed automatically during skill installation:

  • python-docx
  • lxml

The skill includes a virtual environment setup script that will create and manage dependencies automatically.

Customization

The skill can be customized by modifying:

  • Default reminder times
  • Natural language parsing rules
  • Notification preferences
  • Storage location

Troubleshooting

  • If events aren't showing up, check that the date/time format is correct
  • If reminders aren't working, verify WhatsApp is properly configured
  • For parsing issues, try being more explicit with dates and times

Contributing

We welcome contributions! Please see our contributing guidelines in the repository.

Support

For support, please open an issue in the GitHub repository or visit the OpenClaw community forums.

README.md

Advanced Calendar Skill for OpenClaw

A sophisticated calendar management skill that understands natural language and seamlessly integrates with your workflow.

🌟 Features

  • Natural Language Processing: Talk to your calendar in everyday language
  • Smart Event Creation: Automatically extracts dates, times, durations, and reminders
  • Interactive Assistance: Asks for missing information when needed
  • Multi-Channel Notifications: Sends notifications via WhatsApp, Discord, Telegram, Signal, and other configured channels
  • Persistent Reminders: If no acknowledgment is received, reminders repeat every 15 minutes like a snooze alarm
  • Flexible Reminders: Set reminders minutes, hours, or days in advance
  • Full CRUD Operations: Create, read, update, delete calendar events
  • Local Storage: All data stored privately on your system
  • Zero External Dependencies: Works completely offline

🚀 Quick Start

After installation, simply talk to your OpenClaw assistant:

You: "Schedule a meeting with the team tomorrow at 2pm, lasting 1 hour, remind me 30 minutes before"
OpenClaw: ✅ Created event: meeting with the team
         Time: 2026-02-03 14:00, Duration: 60 minutes, Reminder: 30 minutes before

🛠️ Installation

clawhub install advanced-calendar

📖 Examples

Natural Language Commands

  • "Create a dentist appointment next Friday at 10am, remind me 2 hours before"
  • "What do I have scheduled for tomorrow?"
  • "I have lunch with Sarah today at noon"
  • "Show me my calendar for this week"

Structured Commands

calendar create --title "Team Meeting" --date 2026-02-15 --time 14:00 --reminder 30
calendar list --days 7

🔧 Configuration

The skill works out-of-the-box with sensible defaults. Optional configuration includes:

  • Setting up WhatsApp notifications for reminders
  • Adjusting default reminder times
  • Modifying natural language parsing rules

🤝 Contributing

We welcome contributions! Feel free to:

  • Report bugs and issues
  • Suggest new features
  • Submit pull requests
  • Improve documentation

📄 License

MIT License - see LICENSE file for details.

🆘 Support

For support, please open an issue in the repository or visit the OpenClaw community forums.

Permissions & Security

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

Requirements

- OpenClaw 1.0+ - Python 3.6+ - At least one notification channel configured (WhatsApp, Discord, Telegram, Signal, etc.)

Configuration

After installation, you may want to configure: 1. Multi-channel notifications (WhatsApp, Discord, Telegram, Signal, etc.) 2. Default reminder time preferences 3. Default event duration 4. Repeat reminder intervals (default: every 15 minutes until acknowledged) 5. Acknowledgment keywords (default: "OK", "Got it", "Received", "Understood", "Ack", etc.)

FAQ

How do I install advanced-calendar?

Run openclaw add @toughworm/advanced-calendar in your terminal. This installs advanced-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/toughworm/advanced-calendar. Review commits and README documentation before installing.