A Claude Code skill that analyzes Move language packages against the official Move Book Code Quality Checklist, helping you write better, more maintainable Move code.
This skill extends Claude Code with deep knowledge of Move language best practices, providing:
The skill analyzes your Move code across multiple dimensions:
# Clone to your Claude skills directory
git clone https://github.com/1NickPappas/move-code-quality-skill ~/.claude/skills/move-code-quality
Create the skills directory if it doesn't exist:
mkdir -p ~/.claude/skills
Clone or copy this skill to the skills directory:
cd ~/.claude/skills
git clone https://github.com/1NickPappas/move-code-quality-skill
Claude Code will automatically load the skill when working with Move code
The skill activates automatically when you're working with Move code. You can also explicitly invoke it:
Analyze this Move package for code quality issues
Review this module against the Move code quality checklist
Check if this code follows Move 2024 best practices
The skill provides specific feedback based on the Move Book examples:
Before: use my_package::{Self};
After: use my_package;
Reason: Avoid redundant Self imports
Before: public entry fun transfer(...)
After: public fun transfer(...)
Reason: Public functions are more composable for PTBs
We welcome contributions! Please see CONTRIBUTING.md for details.
This project is licensed under the MIT License - see the LICENSE file for details.
This skill is based on the comprehensive code quality guidelines from The Move Book by the Move community.
5 commits
A Claude Code skill that analyzes Move language packages against the official Move Book Code Quality Checklist, helping you write better, more maintainable Move code.
This skill extends Claude Code with deep knowledge of Move language best practices, providing:
The skill analyzes your Move code across multiple dimensions:
# Clone to your Claude skills directory
git clone https://github.com/1NickPappas/move-code-quality-skill ~/.claude/skills/move-code-quality
Create the skills directory if it doesn't exist:
mkdir -p ~/.claude/skills
Clone or copy this skill to the skills directory:
cd ~/.claude/skills
git clone https://github.com/1NickPappas/move-code-quality-skill
Claude Code will automatically load the skill when working with Move code
The skill activates automatically when you're working with Move code. You can also explicitly invoke it:
Analyze this Move package for code quality issues
Review this module against the Move code quality checklist
Check if this code follows Move 2024 best practices
The skill provides specific feedback based on the Move Book examples:
Before: use my_package::{Self};
After: use my_package;
Reason: Avoid redundant Self imports
Before: public entry fun transfer(...)
After: public fun transfer(...)
Reason: Public functions are more composable for PTBs
We welcome contributions! Please see CONTRIBUTING.md for details.
This project is licensed under the MIT License - see the LICENSE file for details.
This skill is based on the comprehensive code quality guidelines from The Move Book by the Move community.
5 commits