matlab-review-code
Installation
SKILL.md
Code Review
Systematically review MATLAB code for quality, correctness, performance, and adherence to MathWorks coding conventions using static analysis and manual inspection patterns.
When to Use
- User asks to review, audit, or improve code quality
- User wants to check adherence to MathWorks coding standards
- Preparing code for handoff, publication, or open-source release
- After a significant implementation — verify before committing
- User reports "code smells" or asks for cleanup suggestions
When NOT to Use
- User wants to debug a runtime error — use
matlab-debugginginstead - User wants to optimize performance — use performance profiling skills
- User wants to generate tests — use
matlab-testinginstead