Resources
6Install
npx skillscat add imoonkey/openweb/src-sites-kayak Install via the SkillsCat registry.
SKILL.md
Kayak
Overview
Travel meta-search engine — flights, hotels across 100+ providers.
Workflows
Search for flights
searchFlights(origin, destination, departureDate, returnDate)→ results withresultId,legs,segments- Results include booking URLs to provider sites (Southwest, United, etc.)
- Use
legsmap to get duration/times,segmentsmap for airline/flight details
Search for hotels
searchHotels(destination, checkInDate, checkOutDate)→ results with hotel name, rating, prices- Results include prices from multiple providers for comparison
Operations
| Operation | Intent | Key Input | Key Output | Notes |
|---|---|---|---|---|
| searchFlights | find flights | origin, destination, departureDate | results, legs, segments, airlines | round-trip if returnDate given |
| searchHotels | find hotels | destination, checkInDate, checkOutDate | results with provider pricing | use dashes in destination |
Quick Start
# Search round-trip flights SFO → NYC
openweb kayak exec searchFlights '{"origin":"SFO","destination":"NYC","departureDate":"2026-05-15","returnDate":"2026-05-22"}'
# Search hotels in New York
openweb kayak exec searchHotels '{"destination":"New-York","checkInDate":"2026-05-15","checkOutDate":"2026-05-20","guests":2}'