When the user requires detailed transit line information including complete station sequences between transfer points. This skill fetches comprehensive transit network data from authoritative sources, extracts station lists for specific line segments, identifies transfer stations, and organizes the information into sequential itineraries for route documentation.
Compile a complete, sequential list of transit stations between origin and destination points, including all intermediate stations along each line segment and transfer points. The output should be saved to a specified file.
google_map-maps_geocode to obtain precise coordinates for both origin and destination addresses.google_map-maps_search_places with query "MRT station" (or relevant transit type) and a small radius (e.g., 1000m) around the origin coordinates to identify the nearest transit station(s).google_map-maps_distance_matrix with mode "walking" to compare walking distances to candidate stations. Select the station with the shortest walking distance.google_map-maps_directions with mode "transit" between the origin and destination to obtain a high-level route. This provides the sequence of line segments and transfer points.For each identified transit line segment between transfer points (or between boarding/alighting station and a transfer point):
fetch-fetch_markdown to retrieve the Wikipedia page for the specific transit line (e.g., "Downtown Line", "East–West MRT line").local-web_search with queries like "[Line Name] stations list" or "[Station A] to [Station B] stations".filesystem-write_file to save the compiled list of stations to the user-specified file path (e.g., routine.txt).