wp-plugin-dev
Installation
SKILL.md
WordPress Plugin Development
Overview
Create production-ready WordPress plugins that follow official WordPress coding standards, the WordPress.org plugin directory guidelines, and security best practices. Every plugin produced by this skill is modular, secure, translatable, and ready for WordPress.org submission.
Quick Start Workflow
- Read references — Before writing any code, read the relevant reference files:
references/architecture.md— Plugin structure, boilerplate patterns for all plugin typesreferences/security.md— Sanitization, escaping, prepared statements, nonces, cachingreferences/wp-org-guidelines.md— WordPress.org directory rules (18 guidelines)
- Gather requirements — Ask the user what the plugin should do, then determine which modules are needed
- Scaffold — Generate the directory structure and bootstrap file
- Build features — Create each feature as a separate modular class
- Generate readme.txt — Always include a WordPress.org-compliant readme.txt
- Deliver — Ask user if they want files in
/mnt/user-data/outputs/for download or a custom path
Related skills