Skip to content

feat: dynamic iCalendar (.ics) export endpoint#239

Open
candogruyol wants to merge 1 commit intoitskovacs:mainfrom
candogruyol:feat/ical-export
Open

feat: dynamic iCalendar (.ics) export endpoint#239
candogruyol wants to merge 1 commit intoitskovacs:mainfrom
candogruyol:feat/ical-export

Conversation

@candogruyol
Copy link
Copy Markdown

Serves a downloadable .ics calendar file from trip data.

Changes

  • GET /api/trips/{trip_id}/export/ical returns text/calendar
  • Timed events for items with time, all-day events for empty days
  • Uses SUMMARY, LOCATION, DESCRIPTION fields per RFC 5545
  • No external dependencies

How it works

Built for use with Claude Code skills — after the agent creates a full trip itinerary via the API, users can export to their phone calendar with one click. The skill v2 handles complete trip planning (16 steps including place enrichment, weather, packing lists) and this endpoint lets users sync the result to Google Calendar / Apple Calendar.

Closes #198

GET /api/trips/{trip_id}/export/ical returns a downloadable .ics file.

- Each item with a time becomes a timed VEVENT (1-hour default)
- Days with no items become all-day events
- Uses item text as SUMMARY, place name as LOCATION, price as DESCRIPTION
- No external dependencies, builds .ics manually per RFC 5545

Designed to work with Claude Code skills that auto-generate trip
itineraries and export them to phone calendars.

Closes itskovacs#198
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant