magento2-db-sql-csv
Installation
SKILL.md
Magento 2 — DB Query & CSV Export Best Practices
Two mandatory rules for Magento 2 projects.
Rules
| # | Rule | Severity |
|---|---|---|
| 1 | Never write raw SQL — always use the Magento query builder | CRITICAL |
| 2 | Always use/create a CSV adapter class for file exports | REQUIRED |
Rule 1 — No Raw SQL, Use Query Builder
Read: rules/no-raw-sql.md
Rule 2 — CSV Export via Adapter
Related skills