Loading...
Loading...
Complete WordPress development workflow covering theme development, plugin creation, WooCommerce integration, performance optimization, and security hardening.
npx skill4agent add sickn33/antigravity-awesome-skills wordpressapp-builderenvironment-setup-guideUse @app-builder to scaffold a new WordPress project with modern toolingfrontend-developerfrontend-designtailwind-patternsweb-performance-optimizationtheme-name/
├── style.css
├── functions.php
├── index.php
├── header.php
├── footer.php
├── sidebar.php
├── single.php
├── page.php
├── archive.php
├── search.php
├── 404.php
├── template-parts/
├── inc/
├── assets/
│ ├── css/
│ ├── js/
│ └── images/
└── languages/Use @frontend-developer to create a custom WordPress theme with React componentsUse @tailwind-patterns to style WordPress theme with modern CSSbackend-dev-guidelinesapi-design-principlesauth-implementation-patternsplugin-name/
├── plugin-name.php
├── includes/
│ ├── class-plugin-activator.php
│ ├── class-plugin-deactivator.php
│ ├── class-plugin-loader.php
│ └── class-plugin.php
├── admin/
│ ├── class-plugin-admin.php
│ ├── css/
│ └── js/
├── public/
│ ├── class-plugin-public.php
│ ├── css/
│ └── js/
└── languages/Use @backend-dev-guidelines to create a WordPress plugin with proper architecturepayment-integrationstripe-integrationbilling-automationUse @payment-integration to set up WooCommerce with StripeUse @billing-automation to create subscription products in WooCommerceweb-performance-optimizationdatabase-optimizerUse @web-performance-optimization to audit and improve WordPress performancesecurity-auditorwordpress-penetration-testingsast-configurationUse @wordpress-penetration-testing to audit WordPress securityUse @security-auditor to perform comprehensive security reviewtest-automatorplaywright-skillwebapp-testingUse @playwright-skill to create E2E tests for WordPress sitedeployment-engineercicd-automation-workflow-automategithub-actions-templatesUse @deployment-engineer to set up WordPress deployment pipelineregister_post_type('book', [
'labels' => [...],
'public' => true,
'has_archive' => true,
'supports' => ['title', 'editor', 'thumbnail', 'excerpt'],
'menu_icon' => 'dashicons-book',
]);add_action('rest_api_init', function() {
register_rest_route('myplugin/v1', '/books', [
'methods' => 'GET',
'callback' => 'get_books',
'permission_callback' => '__return_true',
]);
});add_action('init', function() {
class WC_Product_Custom extends WC_Product {
// Custom product implementation
}
});developmentsecurity-audittesting-qaecommerce