bundledCatalogEndpoints top-level property
Provider base URLs the CLI can show WITHOUT any user config — the catalog's default endpoints above. The cli_visual leak guard subtracts these from the real-config markers so a hermetic screen rendering the provider picker is never flagged for bundled-catalog content (issue #508).
Implementation
Set<String> get bundledCatalogEndpoints => {
for (final spec in enabledProviders())
if (spec.defaultBaseUrl.isNotEmpty) spec.defaultBaseUrl,
};