Back to Registry View Author Profile
Official Verified
icloud-toolkit
Unified iCloud integration for Calendar, Email, and Contacts. Use when: (1) creating, listing, searching, or deleting calendar events, (2) reading, sending, or searching email, (3) looking up, creating, editing, or deleting contacts, (4) any task involving iCloud calendar, email, or contacts. Handles timezone conversion, iCloud-compatible formatting, and vdirsyncer sync automatically.
skill-install — Terminal
Install via CLI (Recommended)
clawhub install openclaw/skills/skills/gwlsn/icloudtoolkitOr
iCloud Toolkit
Calendar + Email + Contacts CLI. One script, all iCloud operations.
Script: scripts/icloud.py | Config: config/config.json
Rules
- Always use the CLI commands below instead of reading source files, parsing .ics/.vcf files directly, or grepping code. The CLI handles CalDAV discovery, IMAP operations, feed fetching, sync, timezone conversion, and formatting internally.
- One query first, fan out only if needed. Start with a single
calendar list --days Norcalendar search "<keyword>"— scan the output yourself before running more commands. Do not run multiple searches with different keywords in parallel. Each command triggers a sync cycle, so fewer calls = faster answers. - For multi-calendar queries (e.g., "when are we both free?"), run
calendar listfor each calendar separately, then reason over the combined output. - Subscribed calendars are read-only. You can list and search them, but
calendar createandcalendar deleteonly work on owned calendars. - Run
calendar refreshif the user mentions subscribing to a new calendar. - If a calendar returns no events, report that to the user — don't debug it. Empty results are valid. The user may not have events, or the calendar may need a
calendar refresh. Never write scripts to parse data or call APIs as a workaround. - Always ask permission before sending or deleting emails on behalf of the user.
- Don't re-read this file every turn. Once you've read SKILL.md in a session, you have the commands — just use them.
Quick reference
ICLOUD=~/.openclaw/workspace/skills/icloud-toolkit/scripts/icloud.py
# Calendar
python3 $ICLOUD calendar list # Today
python3 $ICLOUD calendar list --days 7 # Next 7 days
python3 $ICLOUD calendar list --days 7 --calendar Appointments # Specific calendar
python3 $ICLOUD calendar search "meeting" # Search events
python3 $ICLOUD calendar create <cal> <date> <start> <end> <title> [--location X] [--description X]
python3 $ICLOUD calendar create-allday <cal> <date> <title> [--description X]
python3 $ICLOUD calendar delete <uid>
python3 $ICLOUD calendar sync # Manual sync
python3 $ICLOUD calendar disable <name> # Hide from listings
python3 $ICLOUD calendar enable <name> # Show in listings
python3 $ICLOUD calendar refresh # Re-discover calendars
Metadata
AI Skill Finder
Not sure this is the right skill?
Describe what you want to build — we'll match you to the best skill from 16,000+ options.
Find the right skill Add to Configuration
Paste this into your clawhub.json to enable this plugin.
{
"plugins": {
"official-gwlsn-icloudtoolkit": {
"enabled": true,
"auto_update": true
}
}
}Safety NoteClawKit audits metadata but not runtime behavior. Use with caution.