#!/usr/bin/env bash # calendar-invite — wrapper script for the calendar invite tool. # # Usage: # ./calendar-invite.sh send [options] # send a calendar invite # ./calendar-invite.sh reply [options] # accept/decline/tentative # # Requires: uv, himalaya, vdirsyncer (for CalDAV sync). set -euo pipefail SCRIPT_DIR="$(cd "$(dirname "$0")" && pwd)" SKILL_DIR="$(cd "$SCRIPT_DIR/.." && pwd)" exec uv run --project "$SKILL_DIR" python "$SCRIPT_DIR/calendar_invite.py" "$@"