What problem does it solve? Move developers often write code that compiles but violates modern Move 2024 Edition best practices, leading to outdated syntax, non-composable functions, and inconsistent naming that hurts maintainability and PTB composability. ## Core Features & Use Cases - Systematic Quality Audit: Reviews Move packages across 11 categories with 50+ rules covering Move.toml manifests, imports, structs, functions, macros, and tests. - Move 2024 Edition Compliance: Detects missing edition declarations, legacy module syntax, and outdated explicit framework dependencies for Sui 1.45+. - Prioritized Reporting: Produces structured findings with file paths, line numbers, before/after code examples, and severity levels from critical to recommended. - Use Case: A developer finishing a Sui smart contract module asks for a review and receives a report flagging a missing edition field, redundant public entry modifiers, and manual loops that should use vector::tabulate! macros. ## Quick Start Ask the assistant to analyze this Move package for code quality issues against the Move Book checklist.