ワンクリックで
calendar
Manage calendar events and schedules. Create, view, update, and delete events. Supports Google Calendar and Outlook.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Manage calendar events and schedules. Create, view, update, and delete events. Supports Google Calendar and Outlook.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Two-layer memory with vector search + grep. Always load this skill.
Search and install agent skills from ClawHub, the public skill registry.
Schedule reminders and recurring tasks.
Manage email communications. Read, send, search, and organize emails. Supports Gmail and Outlook.
Unified productivity workflows combining calendar, email, and task management. Streamline common work processes like meeting preparation, daily planning, and project tracking.
Create or update AgentSkills. Use when designing, structuring, or packaging skills with scripts, references, and assets.
| name | calendar |
| description | Manage calendar events and schedules. Create, view, update, and delete events. Supports Google Calendar and Outlook. |
| metadata | {"picobot":{"emoji":"📅","requires":{"bins":[]},"install":[]}} |
Use this skill to manage calendar events and schedules. You can create, view, update, and delete calendar events.
To create a new calendar event:
# Create a basic event
cal create --title "Team Meeting" --start "2024-01-15 14:00" --end "2024-01-15 15:00"
# Create an event with description and location
cal create --title "Doctor Appointment" --start "2024-01-20 10:30" --end "2024-01-20 11:30" --description "Annual checkup" --location "Medical Center"
# Create an all-day event
cal create --title "Vacation Day" --start "2024-02-01" --all-day true
# Create a recurring event (weekly team meeting)
cal create --title "Weekly Sync" --start "2024-01-16 09:00" --end "2024-01-16 10:00" --recurrence "weekly" --count 4
To view calendar events:
# View today's events
cal list --today
# View this week's events
cal list --week
# View events for a specific date
cal list --date "2024-01-20"
# View events in a date range
cal list --start "2024-01-15" --end "2024-01-22"
# Search for events containing specific text
cal list --search "meeting"
# View detailed information about an event
cal show --id "abc123"
To update an existing calendar event:
# Update event time
cal update --id "abc123" --start "2024-01-15 15:00" --end "2024-01-15 16:00"
# Update event title and description
cal update --id "abc123" --title "Updated Meeting Title" --description "Discuss project timeline"
# Mark an event as completed
cal update --id "abc123" --status "completed"
To delete a calendar event:
# Delete an event
cal delete --id "abc123"
# Delete multiple events by ID
cal delete --id "abc123" --id "def456" --id "ghi789"
# Delete all events matching a search
cal delete --search "old meeting"
To manage your calendars:
# List all available calendars
cal calendars list
# Create a new calendar
cal calendars create --name "Project Alpha" --description "Tasks for Project Alpha"
# Delete a calendar
cal calendars delete --id "cal_123"
All commands support time zone specification:
# Specify time zone for events
cal create --title "International Call" --start "2024-01-20 09:00" --end "2024-01-20 10:00" --time-zone "America/New_York"
# View events in a specific time zone
cal list --date "2024-01-20" --time-zone "Europe/London"