Help us improve
Share bugs, ideas, or general feedback.
From salesforce-commerce
Builds Lightning Web Components for Salesforce B2B Commerce storefronts using @api/@track/@wire decorators, commerce-specific wire adapters, custom events, Lightning Web Security, Jest unit testing, and component lifecycle.
npx claudepluginhub orcaqubits/agentic-commerce-skills-plugins --plugin salesforce-commerceHow this skill is triggered — by the user, by Claude, or both
Slash command
/salesforce-commerce:sf-b2b-lwcThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
Build Lightning Web Components for Salesforce B2B Commerce storefronts.
Builds B2B/D2C storefronts with Salesforce Experience Builder: LWR templates, page types (Home, Product, Category, Cart, Checkout), components, themes, navigation, SEO, publishing.
Explains Salesforce LWC Winter '26 features: lightning/graphql module migration from uiGraphQLApi, sf lightning dev component for local development, and platform module access in previews.
Provides expert patterns for Salesforce platform development including Lightning Web Components, Apex triggers, REST/Bulk APIs, Connected Apps, and Salesforce DX with scratch orgs and 2GP.
Share bugs, ideas, or general feedback.
Build Lightning Web Components for Salesforce B2B Commerce storefronts.
Fetch live docs BEFORE writing code:
Web-search the latest:
Web-fetch official sources:
developer.salesforce.com/docs/component-library/documentation/en/lwcdeveloper.salesforce.com/docs/commerce/salesforce-commerce/guide/lwc-for-b2b.htmldeveloper.salesforce.com/docs/platform/lwc/guide/reference-wire-adapters-intro.htmlVerify current decorator syntax, commerce wire adapters, Jest testing patterns, and Lightning Web Security vs Locker behavior.
| File | Purpose | Notes |
|---|---|---|
componentName.html | Template | {property} binding, lwc:if/lwc:else, for:each |
componentName.js | Controller | ES6 class extending LightningElement, decorators, lifecycle hooks |
componentName.css | Styles | Component-scoped, :host selector, CSS custom properties |
componentName.js-meta.xml | Metadata | API version, targets (Experience Builder, App Builder), exposed properties |
| Decorator | Purpose | Reactivity |
|---|---|---|
@api | Public property (parent-settable) or public method | Re-renders on change from parent |
@track | Deep reactivity for objects/arrays | Only needed for nested mutation (e.g., this.obj.nested = val) |
@wire | Reactive data fetching from wire adapters | Re-fetches when reactive ($-prefixed) params change |
Important: Primitive class fields are auto-tracked in modern LWC -- @track is only needed for deep object/array mutation. Reassigning the entire object triggers reactivity without @track.
| Hook | When | Use For |
|---|---|---|
constructor() | Instance created | Initialize non-reactive state; cannot access DOM or properties |
connectedCallback() | Inserted into DOM | Initialization, subscriptions (LMS, platform events) |
renderedCallback() | After every render | DOM access; use sparingly (called frequently) |
disconnectedCallback() | Removed from DOM | Cleanup listeners, unsubscribe channels, release resources |
errorCallback(error, stack) | Child component error | Error boundary; log or display user-friendly messages |
Wire adapters provide reactive, cached data fetching. Two binding styles exist:
@wire(adapter, params) propertyName; -- result is { data, error }@wire(adapter, params) functionName({ data, error }) { ... } -- for custom handlingCommerce-specific adapters live under the lightning/commerce and commerce/* namespaces. Fetch live docs for the current list of available commerce wire adapters (products, pricing, cart, inventory).
// Pattern: Wire adapter usage
// Fetch live docs for adapter params
@wire(getProduct, { productId: '$productId' })
product;
Communication from child to parent uses CustomEvent:
| Property | Purpose |
|---|---|
detail | Event payload (keep minimal) |
bubbles | Propagate up the DOM tree |
composed | Cross shadow DOM boundary |
Parent listens via on[eventname] attribute in template (all lowercase).
| Direction | Mechanism |
|---|---|
| Parent to Child | @api properties set in parent template |
| Child to Parent | CustomEvent dispatched from child |
| Sibling / Unrelated | Lightning Message Service (LMS) via publish/subscribe |
LWS (default since Spring '23) replaces the legacy Locker Service:
Restrictions: No eval(), no Function(), no setTimeout(string). Use @salesforce/resourceUrl for static resources. Follow CRUD/FLS patterns for data access.
Components are exposed to Experience Builder via the js-meta.xml file:
<isExposed>true</isExposed>lightningCommunity__Page and lightningCommunity__Default targets<property> elements (String, Integer, Boolean, etc.)LWC components are unit-tested with @salesforce/sfdx-lwc-jest. Key concepts:
jest.mock()createElement from lwc to instantiate componentselement.shadowRoot.querySelector()Promise.resolve()afterEach to avoid test pollution// Pattern: Jest test skeleton
// Fetch live docs for mock utilities
import { createElement } from 'lwc';
import MyComponent from 'c/myComponent';
@wire for read-only data (reactive, cached via Lightning Data Service)renderedCallback logic (runs on every render)Fetch the LWC Developer Guide, B2B Commerce LWC docs, and wire adapter reference for exact decorator behavior, adapter parameters, and testing utilities before implementing.