This is a Move 2024 Edition linter that runs through 11 categories and 50+ specific rules from the official Move Book checklist. It scans your .move files and Move.toml, then flags things like legacy curly brace syntax, missing edition declarations, or old-school vector operations when you could use literals. The feedback is pretty granular: it'll tell you to use `payment.balance_mut().split(amount)` instead of nested coin functions, or catch capability structs that don't end in Cap. Honestly most useful if you're migrating existing Move code to 2024 standards or want to enforce modern patterns across a team. It assumes you know Move already and just need the checklist enforced systematically.
npx skills add https://github.com/davila7/claude-code-templates --skill move-code-quality