agency-wordpress-performance-engineer

Diagnose and optimize WordPress performance across caching, database queries, plugins, and Core Web Vitals.

Updated Jul 14, 2026
One-click install
npx skills add https://github.com/AI-Staffing-Solution-Consultants-LLC/core-engineering-system --skill agency-wordpress-performance-engineer-ai-staffing-solution-consultants-llc
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: agency-wordpress-performance-engineer
Source: https://github.com/AI-Staffing-Solution-Consultants-LLC/core-engineering-system/tree/main/.agents/skills/engineering-wordpress-performance
Command: npx skills add https://github.com/AI-Staffing-Solution-Consultants-LLC/core-engineering-system --skill agency-wordpress-performance-engineer-ai-staffing-solution-consultants-llc

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? WordPress sites become slow due to plugin bloat, unbounded database queries, bloated autoloaded options, misconfigured caching layers, and heavy front-end assets. This Skill provides a measurement-first methodology to find where time actually goes and fix it with correctly layered caching, query optimization, and asset delivery improvements that pass Core Web Vitals on real mobile devices. ## Core Features & Use Cases - Performance Auditing: Establishes baselines with Query Monitor and Lighthouse, capturing query counts, slow queries, autoload size, plugin cost, and LCP/INP/CLS metrics. - Caching Architecture: Designs layered caching with Redis/Memcached object cache, transients, page caching, and CDN edge caching while guaranteeing cart, checkout, and logged-in pages are never publicly cached. - Query & Database Optimization: Bounds and indexes WP_Query/meta_query/tax_query calls, eliminates N+1 patterns, and trims autoloaded wp_options bloat. - Front-End & Image Optimization: Handles minification, deferral, critical CSS, asset dequeuing, WebP/AVIF conversion, lazy loading, and LCP-image prioritization. - Use Case: A WooCommerce store fails Core Web Vitals with 4.8s mobile LCP. Use this Skill to profile the site, discover a page builder shipping 1.8MB of CSS and an unbounded related-products query, then implement object caching, query fixes, and asset deferral to reach passing scores. ## Quick Start Ask the agent to audit your WordPress site's performance and produce a prioritized optimization plan with before-and-after Core Web Vitals measurements.

Frequently Asked Questions about agency-wordpress-performance-engineer

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I speed up a slow WordPress site?▼

Start by profiling with Query Monitor and Lighthouse to find where time actually goes, then fix the biggest costs first: bound slow WP_Query calls, trim autoloaded options, add a Redis or Memcached object cache, configure page caching for anonymous traffic, and defer render-blocking assets. Verify every change against mobile Core Web Vitals.

How do I fix poor Core Web Vitals on WordPress?▼

Identify the failing metric first: LCP usually traces to slow server response or an unoptimized hero image, INP to heavy JavaScript, and CLS to dimensionless images. Preload the LCP image, add explicit width and height to all images, defer non-critical JavaScript, and measure on throttled mobile.

Should I use Redis or Memcached for WordPress object caching?▼

Both work as persistent object cache backends via the object-cache.php drop-in, and the Skill supports either. Redis is more common on managed hosts and offers richer eviction policies like allkeys-lru. Verify the cache is actually hitting with a target above 90% on warm cache.

Can page caching break WooCommerce cart and checkout pages?▼

Yes, caching dynamic pages is a privacy risk, not just a bug. Cart, checkout, account, and logged-in pages must be explicitly excluded from page cache and CDN edge HTML caching, otherwise one user could see another user's data. Always verify the bypass at the edge.

Why is my WordPress site still slow after installing a cache plugin?▼

A cache plugin pointed at the wrong layer hides symptoms without fixing costs. Common remaining causes include bloated autoloaded options loaded on every request, unbounded meta_query calls, heavy plugins dominating per-request PHP time, and render-blocking page-builder assets. Profile with Query Monitor to find the real cost.

What are the limitations of WordPress performance plugins?▼

Speed plugins cannot fix architectural problems like unbounded queries, missing indexes, or a heavy page builder, and misconfigured ones backfire through over-minification, broken jQuery deferral, or cached dynamic pages. Measurement-driven manual optimization with correct caching layers produces durable results.