What problem does it solve? Upgrading Chakra UI from v2 to v3 involves breaking changes across packages, providers, color mode handling, prop names, and component APIs, and missing any of them leaves a codebase full of type errors and visual regressions. ## Core Features & Use Cases - Guided migration workflow: Walks through package updates, the official codemod, provider setup, color mode migration, prop renames, compound component rewrites, theming recipes, and Next.js specifics in order. - Reference tables and code pairs: Provides v2-to-v3 mappings for props (colorScheme to colorPalette, isDisabled to disabled), components (Modal to Dialog, FormControl to Field), and theming (extendTheme to createSystem, styleConfig to recipes). - Use Case: After upgrading @chakra-ui/react and seeing hundreds of TypeScript errors from isOpen, Modal, and useColorModeValue usages, follow the steps to run the codemod, rewrite compound components, and validate with tsc, lint, and build. ## Quick Start Ask the assistant to migrate your project from Chakra UI v2 to v3 and have it inspect your package.json before applying the codemod and manual fixes.