From b2c-cli
Searches and reads Salesforce B2C Commerce (SFCC/Demandware) Script API docs and XSD schemas via b2c CLI. Use for dw.* classes, B2C scripts, products/orders/URLs.
npx claudepluginhub salesforcecommercecloud/b2c-developer-tooling --plugin b2c-cliThis skill uses the workspace's default tool permissions.
Use the `b2c` CLI to search and read bundled Script API documentation and XSD schemas for Salesforce B2C Commerce.
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.
Checks Next.js compilation errors using a running Turbopack dev server after code edits. Fixes actionable issues before reporting complete. Replaces `next build`.
Use the b2c CLI to search and read bundled Script API documentation and XSD schemas for Salesforce B2C Commerce.
Tip: If
b2cis not installed globally, usenpx @salesforce/b2c-cliinstead (e.g.,npx @salesforce/b2c-cli docs search ProductMgr).
# Search for a class by name
b2c docs search ProductMgr
# Search with partial match
b2c docs search "catalog product"
# Limit results
b2c docs search status --limit 5
# List all available documentation
b2c docs search --list
# Read documentation for a class (renders in terminal)
b2c docs read ProductMgr
# Read by fully qualified name
b2c docs read dw.catalog.ProductMgr
# Output raw markdown (for piping)
b2c docs read ProductMgr --raw
# Output as JSON
b2c docs read ProductMgr --json
Download the latest Script API documentation from a B2C Commerce instance:
# Download to a directory
b2c docs download ./my-docs
# Download with specific server
b2c docs download ./docs --server sandbox.demandware.net
# Keep the original archive
b2c docs download ./docs --keep-archive
Read bundled XSD schema files for import/export data formats:
# Read a schema by name
b2c docs schema catalog
# Fuzzy match schema name
b2c docs schema order
# List all available schemas
b2c docs schema --list
# Output as JSON
b2c docs schema catalog --json
| Class | Description |
|---|---|
dw.catalog.ProductMgr | Product management and queries |
dw.catalog.Product | Product data and attributes |
dw.order.Basket | Shopping basket operations |
dw.order.Order | Order processing |
dw.customer.CustomerMgr | Customer management |
dw.system.Site | Site configuration |
dw.web.URLUtils | URL generation utilities |
| Schema | Description |
|---|---|
catalog | Product catalog import/export |
order | Order data import/export |
customer | Customer data import/export |
inventory | Inventory data import/export |
pricebook | Price book import/export |
promotion | Promotion definitions |
coupon | Coupon codes import/export |
jobs | Job step definitions |
See b2c docs --help for a full list of available commands and options.