From bigcommerce-commerce
Optimizes BigCommerce storefront performance: CDN, image optimization, lazy loading, Stencil theme tuning, API caching, GraphQL efficiency, Core Web Vitals. For store speed improvements.
npx claudepluginhub orcaqubits/agentic-commerce-skills-plugins --plugin bigcommerce-commerceThis skill is limited to using the following tools:
**Fetch live docs**:
Generates design tokens/docs from CSS/Tailwind/styled-components codebases, audits visual consistency across 10 dimensions, detects AI slop in UI.
Records polished WebM UI demo videos of web apps using Playwright with cursor overlay, natural pacing, and three-phase scripting. Activates for demo, walkthrough, screen recording, or tutorial requests.
Delivers idiomatic Kotlin patterns for null safety, immutability, sealed classes, coroutines, Flows, extensions, DSL builders, and Gradle DSL. Use when writing, reviewing, refactoring, or designing Kotlin code.
Fetch live docs:
site:developer.bigcommerce.com performance for performance guidebigcommerce stencil theme performance optimization for theme tuningbigcommerce core web vitals optimization for CWV improvementsBigCommerce automatically serves storefronts via its global CDN:
Stencil themes are server-rendered by BigCommerce:
Front matter declares what data to load per page — only request what you need:
related_products if not displayed)limit values to minimum needed{{#if}} to conditionally render sections, but note the data is still fetcheddefer or async attributes@extend (causes CSS bloat){{getImage}} helper{{getImage product.image 'product_size'}}loading="lazy"srcset and sizes{{#if}} to skip rendering for empty datainclude to fetch sub-resources in one request (avoid N+1)include_fields / exclude_fields to reduce response payloadfirst/after) — never request all items| Data Type | Cache Strategy | TTL |
|---|---|---|
| Product catalog | CDN / ISR | 5–60 minutes |
| Category tree | CDN / ISR | 5–60 minutes |
| Cart | No cache | Real-time |
| Customer data | No cache | Real-time |
| Store settings | Long cache | 1–24 hours |
| Static assets | CDN | Long-term (versioned) |
<link rel="preload" href="font.woff2" as="font">requestIdleCallback for non-critical workfont-display: swap with size-adjusted fallback fontsnext/image for automatic resizing, WebP, lazy loadingnext/font for zero-CLS web fontsFetch the BigCommerce performance documentation and Stencil optimization guide for current CDN features, image handling, and performance best practices before implementing.