What problem does it solve? CPMCore contains two parallel breadcrumb systems, and only the one driven by ViewData["BreadcrumbNode"] actually renders on screen. This Skill encodes that hard-won knowledge so you wire up breadcrumbs correctly the first time instead of re-deriving the mechanism from the codebase. ## Core Features & Use Cases - Breadcrumb scaffolding: Adds a correctly wired breadcrumb chain to any CPMCore controller action using SmartBreadcrumbs MvcBreadcrumbNode instances rooted at Dashboard. - Dead-code awareness: Explains why the custom [Breadcrumb("Title")] attribute and BreadcrumbActionFilter never render, while still applying the attribute for cosmetic consistency with existing controllers. - Convention matching: Defaults to the common two-level Dashboard → Instellingen → Feature chain, adding a section-label segment only when explicitly requested. - Use Case: You add a new settings page under Instellingen and need its breadcrumb to match sibling pages like MarketDataStatus without digging through _Layout.cshtml and the view component yourself. ## Quick Start Ask the assistant to add a breadcrumb to a controller action, for example: run groupln breadcrumb CookieConsentStats/Index with the label path Instellingen/Website/Cookiebanner.