The Feed component creates a JSON feed of properties for GPT models to crawl and assist in generating responses. It currently powers search results and the brochure page.
Router to navigate between feed pages (supports pagination). All three components are wired in app.routes.ts using custom matcher functions:
feedMatcher: routes to FeedComponent when URL contains "feed". feedWellKnownMatcher: routes to WellKnownComponent when URL contains "well-known". developerfeedMatcher: routes to DeveloperComponent when URL contains "developer". The Feed component is explicitly referenced in routing via the custom feedMatcher.
FeedService fetches data from the API and formats it into the JSON feed structure required by GPT models and other consumers.