feat: dynamic iCalendar (.ics) export endpoint#239
Open
candogruyol wants to merge 1 commit intoitskovacs:mainfrom
Open
feat: dynamic iCalendar (.ics) export endpoint#239candogruyol wants to merge 1 commit intoitskovacs:mainfrom
candogruyol wants to merge 1 commit intoitskovacs:mainfrom
Conversation
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
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Serves a downloadable .ics calendar file from trip data.
Changes
GET /api/trips/{trip_id}/export/icalreturnstext/calendarHow 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