.claude/skills/managing-calendar/SKILL.md
Manage Microsoft Outlook calendar via CLI. View schedule, create events, open events, respond to invites, update meetings. Use when working with calendar, scheduling meetings, checking availability, or managing events.
npx skillsauth add Dbochman/dotfiles managing-calendarInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Manage Microsoft Outlook calendar via calendar-cli - view schedule, create events, respond to invites, and manage meetings.
# Check tool is available
calendar-cli --version
# Test authentication (will prompt for login if needed)
calendar-cli find --after today --limit 1 --toon
If command not found, see installation page. For email operations, see managing-outlook-email. For meeting transcripts, see reading-meeting-transcripts.
Use this skill when users want to:
# Today's events
calendar-cli find --after 2025-02-06 --before 2025-02-07 --toon
# This week
calendar-cli find --after 2025-02-06 --before 2025-02-13 --toon
# With relative times ("2 hours ago", "in 30 minutes")
calendar-cli find --after today --relative --toon
# Specific calendar
calendar-cli find --after today --calendar "Work" --toon
# Full event details (HTML converted to markdown)
calendar-cli get <event-id> --toon
# With specific timezone
calendar-cli get <event-id> --timezone "America/New_York" --toon
# Raw HTML body
calendar-cli get <event-id> --no-markdown --toon
# Open event in browser (Outlook on the web)
calendar-cli open --event-id <event-id>
# Print URL without opening browser
calendar-cli open --event-id <event-id> --no-browser
# Basic meeting
calendar-cli create \
--subject "Team Sync" \
--start "2025-02-10T14:00:00" \
--end "2025-02-10T15:00:00" \
--toon
# With attendees
calendar-cli create \
--subject "Project Review" \
--start "2025-02-10T14:00:00" \
--end "2025-02-10T15:00:00" \
--attendees "[email protected],[email protected]" \
--toon
# With location and body
calendar-cli create \
--subject "Planning Session" \
--start "2025-02-10T10:00:00" \
--end "2025-02-10T11:00:00" \
--location "Conference Room A" \
--body "Agenda:\n1. Review goals\n2. Assign tasks" \
--toon
# Accept
calendar-cli respond <event-id> accept --toon
# Decline
calendar-cli respond <event-id> decline --toon
# Tentative
calendar-cli respond <event-id> tentative --toon
# With message
calendar-cli respond <event-id> accept --message "Looking forward to it!" --toon
# Change time
calendar-cli update <event-id> --start "2025-02-10T15:00:00" --toon
# Update subject
calendar-cli update <event-id> --subject "Updated: Team Sync" --toon
# Add attendees
calendar-cli update <event-id> --attendees "[email protected]" --toon
calendar-cli delete <event-id> --toon
calendar-cli calendars --toon
Run calendar-cli --help for all commands and flags. Run calendar-cli <command> --help for detailed options.
Calendar Review (workflows/calendar-review.md)
Schedule Meeting (workflows/schedule-meeting.md)
Focus Time Management (workflows/focus-time.md)
Category Prioritization (workflows/category-prioritization.md)
Open Loops Review (workflows/open-loops-review.md)
Authentication errors:
rm ~/.ai-pim-utils/auth-cache
calendar-cli find --limit 1 # Triggers re-authentication
Command not found:
~/.local/bin to PATHEvent creation fails:
--start and --end are provided2025-02-10T14:00:00See: installation page for detailed troubleshooting.
development
Search the web for current information, news, facts, and answers. Use when asked questions about current events, needing to look something up, finding websites, researching topics, or when you need up-to-date information beyond your training data.
development
Summarize any URL, YouTube video, podcast, PDF, or file into concise text. Use when asked to read an article, summarize a link, get the gist of a video or podcast, extract content from a URL, or when you need to understand what a web page or document contains.
development
Play music via Spotify and control Google Home speakers. Use when asked to play music, songs, artists, playlists, podcasts, or control speakers/volume/audio.
testing
Create new OpenClaw skills, modify and improve existing skills, and measure skill performance with evals. Use when users want to create a skill from scratch, update or optimize an existing skill, run evals to test a skill, benchmark skill performance with variance analysis, or optimize a skill's description for better triggering accuracy. Also use when asked to "make a skill", "turn this into a skill", "improve this skill", or "test this skill".