magento-code-reviewer
Reviews Magento 2 code for quality, security, performance, and compliance with PSR-12 and Magento coding standards. Use proactively when reviewing code, before commits, during pull requests, or when ensuring code quality. Enforces strict type declarations, proper dependency injection, security best practices, and performance optimization.
What this skill does
# Magento 2 Code Reviewer
Elite code review expert specializing in modern code analysis, security vulnerabilities, performance optimization, and production reliability for Magento 2 applications. Follows Adobe Commerce best practices and Magento 2 Certified Developer standards.
## When to Use
- Reviewing code before commits or pull requests
- Ensuring code quality and standards compliance
- Security vulnerability assessment
- Performance optimization review
- Architecture and design pattern validation
- Pre-deployment code quality checks
## Magento 2 Coding Standards (CRITICAL)
### PSR-12 & Magento Standards
- **PSR-12 Compliance**: Strictly enforce PSR-12 coding standards
- **Magento Coding Standard**: Verify compliance with `vendor/magento/magento-coding-standard/Magento2`
- **EditorConfig**: Check project's `.editorconfig` for indentation (4 spaces), line endings (LF), encoding (UTF-8)
- **Opening Braces**: Classes and methods must have opening braces on their own line
- **No Tabs**: Must use spaces, never tabs
### Type Safety & Modern PHP
- **Strict Types**: `declare(strict_types=1);` required
- Classes: After copyright block, before namespace
- Templates: Same line as `<?php` opening tag
- **Type Hinting**: All parameters and return types must be type-hinted
- **Constructor Property Promotion**: Use with `readonly` modifier where appropriate
- **Strict Comparisons**: Always use `===` and `!==` (never `==` or `!=`)
### Code Quality Checklist
- [ ] `declare(strict_types=1);` present
- [ ] All parameters type-hinted
- [ ] All return types type-hinted
- [ ] Constructor property promotion with `readonly` used where possible
- [ ] No unused imports
- [ ] Strict comparisons used throughout
- [ ] No static methods without justification
- [ ] Constructor has PHPDoc with all `@param` annotations
- [ ] Copyright header present
- [ ] Minimal comments (only critical ones)
### Comment Standards
- **Minimal Comments**: Only critical comments should remain
- **PHPDoc Requirements**: Include only `@param`, `@return`, and `@throws` annotations
- **No Verbose Descriptions**: Avoid lengthy method descriptions unless genuinely complex
- **No Inline Comments**: Flag explanatory inline comments for straightforward code
- **Copyright Headers**: Must be present in all files
### Expected Code Format
**Class:**
```php
<?php
/**
* Copyright © 2025 CompanyName. All rights reserved.
*/
declare(strict_types=1);
namespace CompanyName\ModuleName\Model;
use CompanyName\ModuleName\Api\ConfigInterface;
use CompanyName\ModuleName\Api\DependencyInterface;
class Example
{
/**
* @param DependencyInterface $dependency
* @param ConfigInterface $config
*/
public function __construct(
private readonly DependencyInterface $dependency,
private readonly ConfigInterface $config
) {
}
}
```
**Template:**
```php
<?php declare(strict_types=1);
use CompanyName\ModuleName\ViewModel\ViewModelClass;
use Magento\Framework\Escaper;
use Magento\Framework\View\Element\Template;
/**
* CompanyName - Module Name
*
* Template description.
*
* Copyright © 2025 CompanyName. All rights reserved.
*
* @var ViewModelClass $viewModel
* @var Template $block
* @var Escaper $escaper
*/
```
## Review Process
### 1. Automated Analysis
Run these tools for automated checks:
- **Static Analysis**: `vendor/bin/phpstan` or `vendor/bin/psalm`
- **Code Style**: `vendor/bin/phpcs --standard=Magento2`
- **Security Scanning**: Review for common vulnerabilities
- **Performance Profiling**: Use Blackfire, XHProf for performance issues
### 2. Standards Compliance
- **PSR Compliance**: Enforce PSR-1, PSR-2, PSR-4, and PSR-12
- **Magento Patterns**: Verify Factory, Observer, Plugin, Repository, Service Contract patterns
- **SOLID Principles**: Evaluate Single Responsibility, Open/Closed, Liskov Substitution, Interface Segregation, Dependency Inversion
- **Dependency Injection**: Check proper DI usage (no service locators)
- **Service Contracts**: Verify interface usage
### 3. Security Review
- **Input Validation**: Check proper sanitization and validation
- **SQL Injection**: Identify vulnerable queries, recommend parameterized queries
- **XSS Prevention**: Verify output escaping (`$escaper->escapeHtml()`, etc.)
- **CSRF Protection**: Check form key implementation
- **Access Control**: Ensure proper ACL implementation
- **Data Encryption**: Review sensitive data handling
### 4. Performance Review
- **Database Queries**: Analyze N+1 problems, missing indexes, inefficient joins
- **Caching Strategy**: Review Full Page Cache, Block Cache implementations
- **Memory Usage**: Identify memory leaks and inefficient object instantiation
- **Collection Optimization**: Review filters, pagination, select statements
- **Frontend Performance**: Evaluate JavaScript/CSS bundling, image optimization
### 5. Architecture Review
- **Module Structure**: Validate proper directory structure
- **Dependency Injection**: Review di.xml configurations
- **Service Contracts**: Ensure proper API interface implementation
- **Plugin Usage**: Evaluate before/after/around plugin implementations
- **Event Observers**: Review event dispatching patterns
- **Database Schema**: Validate db_schema.xml and upgrade scripts
## Reporting Standards
### Severity Classification
- **Critical**: Security vulnerabilities, data loss risks, breaking changes
- **High**: Performance issues, architectural problems, standards violations
- **Medium**: Code quality issues, maintainability concerns
- **Low**: Style preferences, minor optimizations
### Feedback Format
- Provide specific code examples
- Include recommended fixes
- Reference Magento documentation links
- Quantify performance implications where applicable
## Best Practices Reference
Follow Adobe Commerce best practices:
- [Coding Standards](https://developer.adobe.com/commerce/php/coding-standards/)
- [Best Practices](https://developer.adobe.com/commerce/php/best-practices/)
- [Extension Development](https://developer.adobe.com/commerce/php/best-practices/extensions/)
**CRITICAL**: Always check project for coding standards files (phpcs.xml, .php-cs-fixer.php, .editorconfig) and enforce them rigorously.
Related in Security
mac-ops
IncludedComprehensive macOS workstation operations — diagnose kernel panics, identify failing drives, audit launchd startup items, decode wake reasons, triage TCC permission denials, manage APFS snapshots, recover from no-boot. Use for: Mac is slow, slow bootup, won't boot, kernel panic, kernel_task hot, mds_stores CPU, photoanalysisd, cloudd, login loop, gray screen, sleep wake failure, drive failing, IO errors, APFS snapshots eating space, Time Machine local snapshots, Spotlight indexing, launchd, LaunchAgent, LaunchDaemon, login items, TCC permissions, Full Disk Access, Screen Recording denied, Gatekeeper, quarantine, com.apple.quarantine, app is damaged, helper tool, /Library/PrivilegedHelperTools, pmset, wake reasons, dark wake, sysdiagnose, panic.ips, DiagnosticReports, configuration profile, MDM profile, remote diagnostics over SSH.
a11y-audit
IncludedRun accessibility audits on web projects combining automated scanning (axe-core, Lighthouse) with WCAG 2.1 AA compliance mapping, manual check guidance, and structured reporting. Output is configurable: markdown report only, markdown plus machine-readable JSON, or markdown plus issue tracker integration. Use this skill whenever the user mentions "accessibility audit", "a11y audit", "WCAG audit", "accessibility check", "compliance scan", or asks to check a web project for accessibility issues. Also trigger when the user wants to verify WCAG conformance or map findings to a specific standard (CAN-ASC-6.2, EN 301 549, ADA/AODA).
erpclaw
IncludedAI-native ERP system with self-extending OS. Full accounting, invoicing, inventory, purchasing, tax, billing, HR, payroll, advanced accounting (ASC 606/842, intercompany, consolidation), and financial reporting. 413 actions across 14 domains, 43 expansion modules. Constitutional guardrails, adversarial audit, schema migration. Double-entry GL, immutable audit trail, US GAAP.
assess
IncludedAssesses and rates quality 0-10 across multiple dimensions (correctness, maintainability, security, performance, testability, simplicity) with pros/cons analysis. Compares against project conventions and prior decisions from memory. Produces structured evaluation reports with actionable improvement suggestions. Use when evaluating code, designs, architectures, or comparing alternative approaches.
spring-boot-security-jwt
IncludedProvides JWT authentication and authorization patterns for Spring Boot 3.5.x covering token generation with JJWT, Bearer/cookie authentication, database/OAuth2 integration, and RBAC/permission-based access control using Spring Security 6.x. Use when implementing authentication or authorization in Spring Boot applications.
code-hardcode-audit
IncludedDetect hardcoded values, magic numbers, and leaked secrets. TRIGGERS - hardcode audit, magic numbers, PLR2004, secret scanning.