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-commerceThis skill is limited to using the following tools:
Build Lightning Web Components for Salesforce B2B Commerce storefronts.
Searches, retrieves, and installs Agent Skills from prompts.chat registry using MCP tools like search_skills and get_skill. Activates for finding skills, browsing catalogs, or extending Claude.
Searches prompts.chat for AI prompt templates by keyword or category, retrieves by ID with variable handling, and improves prompts via AI. Use for discovering or enhancing prompts.
Guides MCP server integration in Claude Code plugins via .mcp.json or plugin.json configs for stdio, SSE, HTTP types, enabling external services as tools.
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.