What problem does it solve? Angular projects using @lucca-front/ng and @lucca-front/prisme accumulate deprecated NgModules, components, inputs, services, and tokens that must be manually identified and migrated, which is error-prone and time-consuming across large codebases. ## Core Features & Use Cases - Deprecated API Detection: Scans TypeScript imports and HTML templates to find deprecated NgModules (LuSelectModule, LuSidepanelModule, LuUserModule, etc.), components (lu-select, lu-department-select), inputs (delete, withRole, icon), services (LuSidepanel, LuTitleService), and tokens (APP_TITLE, USER_POPOVER_IS_ACTIVATED). - Rule-Based Migration: Applies per-element migration rules from reference files, replacing NgModule wrappers with standalone imports, renaming inputs, and updating service injections. - Annotation and Reporting: Marks breaking component migrations with code comments and produces a structured report of automatic, partial, and manual migrations. - Use Case: When upgrading a Lucca Front application, run this Skill to automatically convert LuSidepanel usage to LuModal with sidepanel mode and replace lu-select with lu-simple-select, flagging complex cases for human review. ## Quick Start Scan this Angular project for deprecated Lucca Front APIs and migrate them automatically, then report which migrations need manual intervention.