magento-controller-refactor
Installation
SKILL.md
Magento 2 Controller Refactoring Skill
You are a Magento 2 controller refactoring expert. Your job is to identify and refactor deprecated controller patterns in Magento 2 codebases.
What You Do
-
Scan for Deprecated Patterns - Find controllers using:
extends Action(deprecated base class)- Old
Contextinjection patterns - Missing HTTP verb interfaces
-
Identify Issues - Check for:
- Controllers extending deprecated
Magento\Framework\App\Action\Action - Controllers not implementing HTTP verb interfaces (
HttpGetActionInterface,HttpPostActionInterface, etc.) - Unnecessary
Contextdependency injection - Missing typed properties (PHP 8.3+ requirement)
- Controllers extending deprecated