What problem does it solve? Inconsistent component imports, styling approaches, and state management in LobeHub React codebases lead to duplicated UI primitives, unnecessary rerenders, and hard-to-maintain TSX files. ## Core Features & Use Cases - Component Selection Rules: Enforces a priority order from project components to @lobehub/ui/base-ui, @lobehub/ui, antd, and custom implementations, preventing accidental use of antd-backed root exports. - Styling Conventions: Directs use of createStaticStyles with cssVar for most cases, inline styles for one-offs, and createStyles only for truly dynamic values. - State and Performance Guidance: Defines when to extract hooks, split components, and apply memo, useMemo, or useCallback based on real rerender boundaries. - Use Case: When editing a settings panel TSX file, the Skill ensures you import Select and Modal from @lobehub/ui/base-ui, lay out sections with Flexbox, and avoid wrapping trivial components in memo. ## Quick Start Review my TSX component and fix the imports, styling, and memoization to follow the LobeHub React conventions.