What problem does it solve? Restructuring a monolithic codebase into a modular architecture is risky and error-prone: files get moved without a plan, namespaces break, and modules end up importing from each other directly. This Skill manages the entire migration process with framework detection, a file-by-file migration map, explicit user confirmation, and per-file validation. ## Core Features & Use Cases - Framework Detection: Automatically identifies Laravel + FuseCore, standard Laravel, Next.js with modules/, or plain React, and delegates to the matching framework expert. - Planned Migration: Explores the full codebase, builds a file-by-file migration plan, and waits for explicit user approval before touching any code. - Cross-Module Isolation Enforcement: Ensures all shared logic routes through a central core (FuseCore/Core/ or modules/cores/) and blocks direct module-to-module imports. - Use Case: You have a Laravel app with all services in app/Services/ and want to move to FuseCore modules. The Skill maps every file, creates module.json manifests, updates namespaces, and runs sniper validation after each move. ## Quick Start Ask the AI to modularize this codebase and convert it to a modular architecture with a migration plan before moving any files.