What problem does it solve? Building WordPress plugins that are secure, performant, and maintainable requires deep knowledge of WordPress APIs, security practices, and architecture patterns. This Skill guides the creation, extension, review, and debugging of WordPress plugins using modern OOP PHP, enforcing consistent architecture and security standards. ## Core Features & Use Cases - Two Architecture Tiers: Choose between Standard (OOP with Hooks Loader, PSR-4 autoloading) or Enterprise (Service Container, Dependency Injection, modular architecture) based on plugin scope. - Security & Performance Enforcement: Mandatory nonces, sanitization, escaping, capability checks, prepared statements, transients, and Action Scheduler for background tasks instead of WP-Cron. - Comprehensive References: Detailed guidance for architecture, security, performance, WP-CLI, WordPress APIs, database migrations, and testing with PHPUnit/WP_Mock. - Use Case: Ask the assistant to scaffold a new plugin with a custom post type, REST endpoints, and an admin settings page — it will produce the full directory structure, composer.json, namespaced classes, security measures, and test cases. ## Quick Start Ask the assistant to create a WordPress plugin for managing event registrations with a custom database table, REST API endpoints, and a WP-CLI import command.