Calendar

Calendar canvas for displaying events. Use when showing calendar views.

ItamarZand88 e606720 1014 B Updated

File contents

Calendar Canvas

Display calendar views with events.

Example Prompts

Try asking Claude:

  • "Show me my calendar for this week"
  • "Schedule a meeting on Tuesday at 2pm"

Scenarios

display (default)

View-only calendar display.

bun run src/cli.ts show calendar --scenario display --config '{
  "title": "My Week",
  "events": [
    {"id": "1", "title": "Meeting", "startTime": "2026-01-27T09:00:00", "endTime": "2026-01-27T10:00:00"}
  ]
}'

Configuration

interface CalendarConfig {
  title?: string;
  events: CalendarEvent[];
}

interface CalendarEvent {
  id: string;
  title: string;
  startTime: string;  // ISO datetime
  endTime: string;    // ISO datetime
  color?: string;     // blue, green, red, yellow, magenta, cyan
}

Controls

  • ←/→ - Navigate weeks
  • n - Next week
  • p - Previous week
  • t: Jump to today
  • q or Esc: Quit

itamarzand88/claude-code-canvas-windows/tree/main/canvas/skills/calendar commit e606720197

Frequently asked questions

npx skillmds@latest add itamarzand88/calendar