hyva-create-module
Installation
SKILL.md
Create Magento 2 Module
This utility skill creates new Magento 2 modules in app/code/. It is designed to be called by other skills that need module scaffolding.
Command execution: For commands that need to run inside the development environment (e.g., bin/magento), use the hyva-exec-shell-cmd skill to detect the environment and determine the appropriate command wrapper.
Parameters
When invoking this skill, the calling skill should provide:
| Parameter | Required | Description |
|---|---|---|
vendor |
Yes | Vendor name in PascalCase (e.g., Acme) |
module |
Yes | Module name in PascalCase (e.g., CustomFeature) |
description |
No | Module description for composer.json (default: "[Vendor] [Module] module") |
dependencies |
No | Array of module dependencies for <sequence> in module.xml |
composer_require |
No | Object of composer requirements (package: version) |