Back to Skills

c-calendar

daxaur
Updated 2 days ago
6 views
143
6
143
View on GitHub
Metacalendargoogle-calendarapple-calendargogicalBuddyevents

About

The c-calendar skill enables developers to manage Google and Apple Calendar events directly from Claude. It provides functionality to check availability, list upcoming events, and create/update/delete calendar entries using gog for Google Calendar or icalBuddy for Apple Calendar. Use this skill when you need to interact with calendar data programmatically within your development workflow.

Quick Install

Claude Code

Recommended
Primary
npx skills add daxaur/openpaw -a claude-code
Plugin CommandAlternative
/plugin add https://github.com/daxaur/openpaw
Git CloneAlternative
git clone https://github.com/daxaur/openpaw.git ~/.claude/skills/c-calendar

Copy and paste this command in Claude Code to install this skill

Documentation

This skill manages calendars via gog (Google Calendar) or icalBuddy (Apple Calendar). Check availability with which gog icalBuddy.

Google Calendar — gog cal (gogcli)

gog cal list                               # List upcoming events
gog cal list --days 7                      # Next 7 days
gog cal list --calendar "Work"             # Specific calendar
gog cal list --start "2026-03-01" --end "2026-03-07"
gog cal get <event-id>                     # Get event details
gog cal create --title "Meeting" --start "2026-03-01T10:00" --end "2026-03-01T11:00"
gog cal create --title "Event" --start "tomorrow 2pm" --duration 1h --calendar "Work"
gog cal create --attendees "[email protected],[email protected]" --title "Sync"
gog cal update <event-id> --title "New Title"
gog cal delete <event-id>
gog cal calendars                          # List all calendars
gog cal freebusy --start "tomorrow" --end "tomorrow 5pm"

Apple Calendar — icalBuddy

icalBuddy eventsToday                        # Today's events
icalBuddy eventsToday+3                      # Events today through next 3 days
icalBuddy eventsFrom:"2026-03-01" to:"2026-03-07"
icalBuddy -ic "Work" eventsToday             # Specific calendar
icalBuddy calendars                          # List all calendars
icalBuddy uncompletedTasks                   # Incomplete reminders/tasks

Usage Guidelines

  • Use gog cal freebusy to check availability before scheduling.
  • icalBuddy is read-only for Apple Calendar — use it for viewing, not creating.
  • For creating Apple Calendar events programmatically, prefer gog with Google Calendar or use AppleScript via the osascript fallback.
  • Dates accept natural language with gog ("tomorrow 2pm", "next Monday 9am").

Notes

  • gog requires Google OAuth: gog auth.
  • icalBuddy reads directly from the local Calendar database (no auth needed).
  • Multiple Google accounts supported via gog cal --account work list.

GitHub Repository

daxaur/openpaw
Path: skills/c-calendar
0
ai-agentanthropicautomationclaudeclaude-codecli

Related Skills

content-collections

Meta

This skill provides a production-tested setup for Content Collections, a TypeScript-first tool that transforms Markdown/MDX files into type-safe data collections with Zod validation. Use it when building blogs, documentation sites, or content-heavy Vite + React applications to ensure type safety and automatic content validation. It covers everything from Vite plugin configuration and MDX compilation to deployment optimization and schema validation.

View skill

polymarket

Meta

This skill enables developers to build applications with the Polymarket prediction markets platform, including API integration for trading and market data. It also provides real-time data streaming via WebSocket to monitor live trades and market activity. Use it for implementing trading strategies or creating tools that process live market updates.

View skill

creating-opencode-plugins

Meta

This skill helps developers create OpenCode plugins that hook into 25+ event types like commands, files, and LSP operations. It provides the plugin structure, event API specifications, and implementation patterns for JavaScript/TypeScript modules. Use it when you need to intercept, monitor, or extend the OpenCode AI assistant's lifecycle with custom event-driven logic.

View skill

sglang

Meta

SGLang is a high-performance LLM serving framework that specializes in fast, structured generation for JSON, regex, and agentic workflows using its RadixAttention prefix caching. It delivers significantly faster inference, especially for tasks with repeated prefixes, making it ideal for complex, structured outputs and multi-turn conversations. Choose SGLang over alternatives like vLLM when you need constrained decoding or are building applications with extensive prefix sharing.

View skill