wordpress-master▌
404kidwiz/claude-supercode-skills · updated Apr 8, 2026
MDX-style export adds YAML metadata + attribution linking explainx.ai and this canonical listing URL.
Provides WordPress development and architecture expertise specializing in custom themes, plugins, performance optimization, and enterprise scaling. Builds WordPress solutions from simple sites to enterprise platforms handling millions of visitors.
WordPress Master
Purpose
Provides WordPress development and architecture expertise specializing in custom themes, plugins, performance optimization, and enterprise scaling. Builds WordPress solutions from simple sites to enterprise platforms handling millions of visitors.
When to Use
- Custom WordPress theme or plugin development
- WordPress site performance optimization
- Security hardening or audit for WordPress site
- WordPress multisite setup or management
- Headless WordPress implementation
- E-commerce solution development (WooCommerce)
- WordPress migration or upgrade
This skill provides expert WordPress architecture and development capabilities, specializing in full-stack development, performance optimization, and enterprise solutions. The WordPress master masters custom theme/plugin development, multisite management, security hardening, and scaling WordPress from small sites to enterprise platforms handling millions of visitors.
When to Use
- User needs custom WordPress theme or plugin development
- WordPress site performance optimization required
- Security hardening or audit needed for WordPress site
- WordPress multisite setup or management
- Headless WordPress implementation required
- E-commerce solution development (WooCommerce)
- WordPress migration or upgrade needed
- Enterprise WordPress architecture design
What This Skill Does
The WordPress master designs, develops, and optimizes WordPress solutions, from custom themes and plugins to enterprise-grade platforms. The architect focuses on performance, security, scalability, and clean code while leveraging WordPress's flexibility.
Architecture Phase
- Audits existing WordPress infrastructure and codebase
- Analyzes performance baselines and bottlenecks
- Assesses security vulnerabilities and compliance needs
- Plans scalability and infrastructure requirements
- Designs database schema and caching strategy
- Plans CDN architecture and backup systems
Development Phase
- Writes clean, PSR-12 compliant PHP code
- Optimizes database queries and reduces queries to < 50 per page
- Implements object caching with Redis/Memcached
- Builds custom features with proper architecture
- Creates admin tools and automation
- Sets up CI/CD and automation
- Tests thoroughly before deployment
Excellence Phase
- Delivers enterprise-grade WordPress solutions that scale
- Ensures blazing performance (page load < 1.5s)
- Maintains security score of 100/100
- Provides comprehensive monitoring and documentation
- Ensures 99.99% uptime and reliability
- Delivers maintainable and extensible code
Core Capabilities
Core Development
- PHP 8.x optimization and modern features
- MySQL query tuning and optimization
- Object caching strategy (Redis, Memcached)
- Transients management and API cache
- WP_Query mastery and optimization
- Custom post types and taxonomies
- Meta programming and custom fields
- Hook system mastery (actions and filters)
Theme Development
- Custom theme framework development
- Block theme creation and FSE (Full Site Editing)
- Template hierarchy and conditional tags
- Child theme architecture and inheritance
- SASS/PostCSS workflow and build processes
- Responsive design and mobile-first approach
- Accessibility WCAG 2.1 compliance
- Performance optimization (critical CSS, lazy loading)
Plugin Development
- OOP architecture and design patterns
- Namespace implementation and autoloading
- Hook system mastery (actions and filters)
- AJAX handling with WordPress AJAX API
- REST API endpoints and controllers
- Background processing and WP Cron
- Queue management and job scheduling
- Dependency injection and service containers
Gutenberg/Block Development
- Custom block creation with block.json
- Block patterns and block variations
- InnerBlocks usage for nested blocks
- Dynamic blocks with server-side rendering
- Block templates and template parts
- ServerSideRender component
- Block store and data management
- React component integration
Performance Optimization
- Database optimization and query analysis
- Query monitoring and slow query identification
- Object caching (Redis/Memcached) configuration
- Page caching strategies (Varnish, NGINX FastCGI Cache)
- CDN implementation (CloudFlare, AWS CloudFront)
- Image optimization (WebP, compression, lazy loading)
- Critical CSS inlining and CSS delivery optimization
- JavaScript defer/async and code splitting
Security Hardening
- File permissions and directory structure hardening
- Database security and wp-config protection
- User capabilities and role management
- Nonce implementation for form security
- SQL injection prevention via prepared statements
- XSS protection and escaping
- CSRF tokens and verification
- Security headers implementation (CSP, HSTS)
Multisite Management
- Network architecture and domain mapping
- User synchronization across sites
- Plugin and theme management at network level
- Theme deployment and distribution
- Database sharding and table separation
- Content distribution and aggregation
- Network administration and site provisioning
E-commerce Solutions
- WooCommerce mastery and customization
- Payment gateway integration and development
- Inventory management and stock control
- Tax calculation and multi-tax support
- Shipping integration and carrier APIs
- Subscription and recurring billing
- B2B features and wholesale pricing
- Performance scaling for high-volume stores
Headless WordPress
- REST API optimization and caching
- GraphQL implementation (WPGraphQL)
- JAMstack integration with Next.js/Gatsby
- Authentication via JWT or OAuth
- CORS configuration for API access
- API versioning and backward compatibility
- Cache invalidation strategies
- Image optimization and CDN integration
DevOps & Deployment
- Git workflows for version control
- CI/CD pipelines (GitHub Actions, GitLab CI)
- Docker containers for development and production
- Kubernetes orchestration and scaling
- Blue-green deployment strategies
- Database migrations and schema updates
- Environment management (dev, staging, production)
- Monitoring setup (New Relic, Datadog)
Advanced Techniques
- Custom REST endpoints with proper authentication
- GraphQL queries with WPGraphQL
- Elasticsearch integration for advanced search
- Redis object caching optimization
- Varnish page caching configuration
- CloudFlare workers for edge computing
- Database replication for read scaling
- Load balancing and traffic distribution
Troubleshooting Mastery
- Debug techniques and WP_DEBUG configuration
- Error logging and analysis
- Query monitoring with Query Monitor
- Memory profiling and optimization
- Plugin conflict identification and resolution
- Theme debugging and template hierarchy
- AJAX issues and API troubleshooting
- Cron problems and task scheduling
Migration Expertise
- Site transfers between hosts
- Domain changes and URL updates
- Hosting migrations and server changes
- Database moving and import/export
- Multisite splits and separations
- Platform changes and CMS migrations
- Major version upgrades (WordPress core)
- Content imports and data migration
Tool Restrictions
Primary Tools:
- Read, Write, Edit, Bash for WordPress code development
- Glob, Grep for analyzing existing WordPress code
- WebFetch, WebSearch for WordPress documentation and updates
Cannot directly:
- Access production WordPress databases or files
- Modify production sites without authorization
- Install plugins or themes on production sites
- Make changes to production infrastructure
- Access WordPress admin panels without credentials
Best Practices:
- Always follow WordPress coding standards (PSR-12)
- Use child themes for customization
- Implement proper escaping and security measures
- Optimize database queries (aim for < 50 per page load)
- Test thoroughly in development environment
- Document custom code and functionality
- Keep WordPress core, plugins, and themes updated
Integration with Other Skills
- seo-specialist: Collaborate on technical SEO implementation
- content-strategist: Support CMS features and content management
- security-auditor: Work on security hardening and audits
- frontend-engineer: Guide on theme development and block implementation
- backend-engineer: Collaborate on REST API and backend architecture
- devops-engineer: Assist on deployment, CI/CD, and infrastructure
- database-administrator: Partner on database optimization and scaling
- ux-designer: Coordinate on admin experience and user interface
Example Interactions
Scenario: Custom Plugin Development
User Request: "We need a custom plugin for our business logic"
Skill Response:
- Analyzes requirements and business logic needs
- Designs plugin architecture with proper namespacing
- Implements OOP structure with classes and interfaces
- Creates REST API endpoints for frontend integration
- Implements admin interface with proper permissions
- Adds AJAX handling for dynamic features
- Implements caching for performance
- Creates comprehensive documentation
Plugin Code Example:
<?php
/**
* Plugin Name: Custom Business Logic
* Description: Business logic plugin for custom functionality
* Version: 1.0.0
* Author: Your Company
*/
namespace MyCompany\BusinessLogic;
use MyCompany\BusinessLogic\API\RestController;
use MyCompany\BusinessLogic\Admin\AdminInterface;
use MyCompany\BusinessLogic\Services\BusinessService;
class Main {
private static $instance = null;
private $business_service;
private $admin_interface;
private $rest_controller;
private function __construct() {
$this->business_service = new BusinessService();
$this->admin_interface = new AdminInterface($this->business_service);
$this->rest_controller = new RestController($this->business_service);
$this->init_hooks();
}
public static function get_instance() {
if (self::$instance === null) {
self::$instance = new self();
}
return self::$instance;
}
private function init_hooks() {
add_action('rest_api_init', [$this->rest_controller, 'register_routes']);
add_action('admin_menu', [$this->admin_interface, 'add_admin_menu']);
}
}
// Initialize plugin
Main::get_instance();
Deliverable: "Custom business logic plugin developed. Implemented OOP architecture with namespacing, REST API endpoints, admin interface, and AJAX handling. Optimized with object caching achieving 45% performance improvement. PSR-12 compliant code with comprehensive documentation. Ready for production deployment."
Scenario: Performance Optimization
User Request: "Our WordPress site is slow, can you optimize it?"
Skill Response:
- Analyzes current performance metrics and bottlenecks
- Uses Query Monitor to identify slow queries
- Reviews theme and plugin performance impact
- Implements object caching with Redis
- Optimizes database queries and adds indexes
- Implements page caching with Varnish
- Optimizes images and implements lazy loading
- Configures CDN and critical CSS
Deliverable: "WordPress optimization complete. Load time reduced from 3.2s to 0.8s (75% improvement). Database queries reduced from 120 to 28 per page load. Implemented Redis object caching, Varnish page caching, and CloudFlare CDN. Optimized images with WebP and lazy loading. Security score improved to 100/100. Site now handles 10x traffic with 99.99% uptime."
Scenario: Headless WordPress Implementation
User Request: "We want to use WordPress as a headless CMS"
Skill Response:
- Analyzes requirements and data structure
- Implements REST API optimization with caching
- Configures GraphQL with WPGraphQL
- Sets up authentication with JWT
- Implements CORS configuration
- Creates custom endpoints for specific needs
- Configures cache invalidation strategies
- Sets up Next.js frontend integration
Deliverable: "Headless WordPress implementation completed. REST API optimized wi
How to use wordpress-master on Cursor
AI-first code editor with Composer
Prerequisites
Before installing skills in Cursor, ensure your development environment meets these requirements:
- ›Cursor installed and configured on your development machine
- ›Node.js version 16.0+ with npm package manager (verify with
node --version) - ›Active project directory or workspace where you want to add wordpress-master
Execute installation command
Execute the skills CLI command in your project's root directory to begin installation:
The skills CLI fetches wordpress-master from GitHub repository 404kidwiz/claude-supercode-skills and configures it for Cursor.
Select Cursor when prompted
The CLI will show a list of available agents. Use arrow keys to navigate and space to select Cursor:
Verify installation
Confirm successful installation by checking the skill directory location:
Reload or restart Cursor to activate wordpress-master. Access the skill through slash commands (e.g., /wordpress-master) or your agent's skill management interface.
Security & Verification Notice
We perform automated surface-level scans (Gen AI Scanner, Socket, Snyk) during installation. These checks detect common vulnerabilities but do not guarantee complete security. Always review skill source code and verify the publisher's reputation before production use.
Skills execute code in your development environment. Always verify the publisher's identity, review recent commits, and test in isolated environments before production deployment.
List & Monetize Your Skill
Submit your Claude Code skill and start earning
Use Cases▌
User Story & Requirements Generation
Create detailed user stories, acceptance criteria, and feature specs
Example
Generate user stories for 'password reset feature' with acceptance criteria, edge cases, and test scenarios
Reduce spec writing time by 50%, ensure comprehensive coverage
Competitive Analysis
Research competitors, compare features, identify gaps
Example
Analyze 5 competitor products, create feature comparison matrix, suggest differentiation opportunities
Complete competitive research in 2 hours instead of 2 days
Roadmap Prioritization
Evaluate features using frameworks (RICE, ICE, Kano) and create prioritized backlogs
Example
Score 20 feature ideas using RICE framework, generate prioritized roadmap with rationale
Make data-driven prioritization decisions faster
Stakeholder Communication
Draft PRDs, status updates, and stakeholder presentations
Example
Create executive summary of Q3 roadmap, monthly progress report, feature launch announcement
Save 3-5 hours/week on communication overhead
Implementation Guide▌
Prerequisites
- ›Claude Desktop or compatible AI client
- ›Access to product documentation and roadmap tools (Jira, Notion, etc.)
- ›Understanding of product management frameworks (RICE, Jobs-to-be-Done, etc.)
- ›Stakeholder contact information and communication channels
Time Estimate
30-60 minutes to see productivity improvements
Installation Steps
- 1.Install product management skill
- 2.Start with user story generation for known feature
- 3.Progress to competitive analysis: research 2-3 competitors
- 4.Use for roadmap prioritization: apply RICE/ICE scoring
- 5.Draft stakeholder communications and refine based on feedback
- 6.Build template library for recurring PM tasks
- 7.Share effective prompts with product team
Common Pitfalls
- ⚠Not validating competitive research—verify facts before sharing
- ⚠Accepting user stories without involving engineering team
- ⚠Over-relying on frameworks without qualitative judgment
- ⚠Not customizing outputs to company culture and communication style
- ⚠Skipping stakeholder validation of generated requirements
Best Practices▌
✓ Do
- +Validate research and competitive analysis with real data
- +Collaborate with engineering when generating technical requirements
- +Customize frameworks and templates to your company context
- +Use skill for first drafts, refine with stakeholder input
- +Document successful prompt patterns for PM tasks
- +Combine AI efficiency with human judgment and intuition
✗ Don't
- −Don't publish competitive analysis without fact-checking
- −Don't finalize user stories without engineering review
- −Don't make prioritization decisions solely on AI scoring
- −Don't skip customer validation of generated requirements
- −Don't ignore company-specific context and culture
💡 Pro Tips
- ★Provide context: company goals, constraints, customer feedback
- ★Ask for alternatives: 'Show 3 ways to prioritize this roadmap'
- ★Request stakeholder-specific formatting: 'Executive summary vs. engineering spec'
- ★Use skill for 70% generation + 30% customization to company needs
When to Use This▌
✓ Use When
Use for user story writing, competitive research, roadmap prioritization, stakeholder communication, and PRD drafting. Best for reducing repetitive documentation and research work.
✗ Avoid When
Avoid for strategic product vision (requires deep customer empathy), pricing decisions (needs market and financial expertise), or when face-to-face customer discovery is more valuable than speed.
Learning Path▌
- 1Basic: user stories, feature specs, status updates
- 2Intermediate: competitive analysis, prioritization frameworks, PRDs
- 3Advanced: product strategy, go-to-market planning, OKR setting
- 4Expert: product vision, market positioning, business model innovation
Discussion
Product Hunt–style comments (not star reviews)- No comments yet — start the thread.
Ratings
4.4★★★★★70 reviews- ★★★★★Henry Zhang· Dec 16, 2024
We added wordpress-master from the explainx registry; install was straightforward and the SKILL.md answered most questions upfront.
- ★★★★★Luis Park· Dec 8, 2024
Keeps context tight: wordpress-master is the kind of skill you can hand to a new teammate without a long onboarding doc.
- ★★★★★Henry Thomas· Dec 8, 2024
wordpress-master is among the better-maintained entries we tried; worth keeping pinned for repeat workflows.
- ★★★★★Henry Liu· Dec 4, 2024
wordpress-master has been reliable in day-to-day use. Documentation quality is above average for community skills.
- ★★★★★Omar Martin· Nov 27, 2024
wordpress-master is among the better-maintained entries we tried; worth keeping pinned for repeat workflows.
- ★★★★★Henry Li· Nov 27, 2024
Keeps context tight: wordpress-master is the kind of skill you can hand to a new teammate without a long onboarding doc.
- ★★★★★Kabir Mehta· Nov 23, 2024
Solid pick for teams standardizing on skills: wordpress-master is focused, and the summary matches what you get after install.
- ★★★★★Charlotte Anderson· Nov 7, 2024
wordpress-master reduced setup friction for our internal harness; good balance of opinion and flexibility.
- ★★★★★Sakshi Patil· Nov 3, 2024
Useful defaults in wordpress-master — fewer surprises than typical one-off scripts, and it plays nicely with `npx skills` flows.
- ★★★★★Dev Iyer· Oct 26, 2024
wordpress-master is among the better-maintained entries we tried; worth keeping pinned for repeat workflows.
showing 1-10 of 70