sfcc-business-manager

sfcc-business-manager is a skill for Claude Code, Codex from finsilabs/awesome-ecommerce-skills. It costs 27 tokens per session (3,832 once invoked), scanned C, original, MIT.

An administration guide for Salesforce Commerce Cloud, an e-commerce platform, covering product catalogs, promotions, site settings, and scheduled data jobs.

In plain words
What is it for?
It is for importing and exporting products or inventory, configuring storefront settings, managing promotions, and investigating failed jobs.
Why use it?
It helps developers and operators manage store data and settings without searching through the platform manually.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one. Also seen: mentions Codex; mentions Gemini CLI; mentions OpenCode.

Good fit It is for importing and exporting products or inventory, configuring storefront settings, managing promotions, and investigating failed jobs.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/finsilabs/awesome-ecommerce-skills/sfcc-business-manager
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add finsilabs/awesome-ecommerce-skills --skill sfcc-business-manager
Clone the repo
git clone --depth 1 https://github.com/finsilabs/awesome-ecommerce-skills

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for sfcc-business-manager

README.md
[![agentmods](https://agentmods.dev/badge/skills/finsilabs/awesome-ecommerce-skills/sfcc-business-manager/github.svg)](https://agentmods.dev/skills/finsilabs/awesome-ecommerce-skills/sfcc-business-manager)
Your own site
<a href="https://agentmods.dev/skills/finsilabs/awesome-ecommerce-skills/sfcc-business-manager"><img src="https://agentmods.dev/badge/skills/finsilabs/awesome-ecommerce-skills/sfcc-business-manager/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for sfcc-business-manager

Your own site · 80×15
<a href="https://agentmods.dev/skills/finsilabs/awesome-ecommerce-skills/sfcc-business-manager"><img src="https://agentmods.dev/badge/skills/finsilabs/awesome-ecommerce-skills/sfcc-business-manager.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 27 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 3,832 The whole file, excluding the scripts and references it only reads on demand.
Security scan C 2 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00027 $0.03832
Opus 5 $0.00014 $0.01916
Sonnet 5 $0.00005 $0.00766
Haiku 4.5 $0.00003 $0.00383

Measured 9d ago against content hash 242314ac30db, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-12, from the pricing page.

Security

Grade C, and why

sfcc-business-manager scanned grade C with 2 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 9d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Hidden instructionshighPrompt injection

Directives inside HTML comments, invisible characters or bidirectional overrides are read by the model and not by the person reviewing the file.

<!-- system-objecttype-extensions.xml — define custom site preference -->

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

await fetch(webdavUrl, {
skills/platform-salesforce-cc/sfcc-business-manager/SKILL.md · 413 lines

How it starts

The opening of the file, as written. The whole thing — 413 lines — stays where its author put it; the contents beside it link to each section on GitHub.

SFCC Business Manager

Overview

Business Manager (BM) is the SFCC administration interface accessed at https://{instance}.dx.commercecloud.salesforce.com/on/demandware.store/Sites-Site/default/ViewApplication-DisplayWelcomePage. It controls every aspect of the SFCC installation: catalog and product management, site preferences, promotion engine, content assets, A/B tests, and job scheduling. Bulk data operations are performed via XML import/export using the Import & Export framework, which processes files from the IMPEX directory via scheduled jobs.

When to Use This Skill

  • When performing initial catalog setup for a new SFCC site
  • When importing products, prices, or inventory from an ERP or PIM system via XML
  • When configuring OCAPI settings for API client registrations
  • When setting up site preferences for custom cartridge configurations
  • When managing promotions, coupon campaigns, and A/B tests across sites
  • When diagnosing job failures or reviewing import error logs in Business Manager

Core Instructions

  1. Navigate key Business Manager areas

    Business Manager URLs follow the pattern {instanceUrl}/on/demandware.store/Sites-Site/default/{Controller-Action}:

    # Site Selection (global)
    /on/demandware.store/Sites-Site/default/ViewApplication-DisplayWelcomePage
    
    # Catalog Management (site-specific)
    /on/demandware.store/Sites-{SiteID}/default/ViewCategories-Start
    
    # Site Preferences
    /on/demandware.store/Sites-{SiteID}/default/ViewSitePreference-StartGroups
    
    # OCAPI Settings
    /on/demandware.store/Sites-Site/default/ViewApplicationApiSettings-Start
    
    # Import & Export
    /on/demandware.store/Sites-{SiteID}/default/ViewJobSchedule-Start
    
    # Job Execution
    /on/demandware.store/Sites-Site/default/ViewJobSchedule-Start
    
  2. Import products via XML catalog import

    SFCC catalog XML follows Demandware's catalog.xsd schema. Products are imported as catalog objects:

    <?xml version="1.0" encoding="UTF-8"?>
    <catalog xmlns="http://www.demandware.com/xml/impex/catalog/2006-10-31" catalog-id="your-catalog">
    
      <!-- Category definition -->
      <category category-id="electronics">
        <display-name xml:lang="x-default">Electronics</display-name>
        <display-name xml:lang="en-US">Electronics</display-name>
        <online-flag>true</online-flag>
        <parent>root</parent>
      </category>
    
      <!-- Simple product -->
      <product product-id="PROD-001">
        <ean>1234567890123</ean>
        <upc>123456789012</upc>
        <display-name xml:lang="x-default">Wireless Headphones Pro</display-name>
        <display-name xml:lang="en-US">Wireless Headphones Pro</display-name>
        <long-description xml:lang="x-default">Premium wireless headphones with ANC</long-description>
        <online-flag>true</online-flag>
        <available-flag>true</available-flag>
        <searchable-flag>true</searchable-flag>
        <tax-class-id>standard</tax-class-id>
        <brand>AudioPro</brand>
        <manufacturer-sku>AP-WH-001</manufacturer-sku>
        <classification-category catalog-id="your-catalog">electronics</classification-category>
        <images>
          <image-group view-type="large">
            <image path="products/PROD-001-large.jpg"/>
          </image-group>
          <image-group view-type="small">
            <image path="products/PROD-001-small.jpg"/>
          </image-group>
        </images>
        <custom-attributes>
          <custom-attribute attribute-id="color">Black</custom-attribute>
          <custom-attribute attribute-id="batteryLife">30</custom-attribute>
        </custom-attributes>
      </product>
    
      <!-- Variation master product -->
      <product product-id="SHIRT-MASTER">
        <display-name xml:lang="x-default">Classic Cotton Shirt</display-name>
        <online-flag>true</online-flag>
        <classification-category catalog-id="your-catalog">apparel</classification-category>
        <variations>
          <attributes>
            <variation-attribute attribute-id="color" variation-attribute-id="color">
              <display-name xml:lang="x-default">Color</display-name>
              <variation-attribute-values>
                <variation-attribute-value value="Blue">
                  <display-value xml:lang="x-default">Blue</display-value>
                </variation-attribute-value>
                <variation-attribute-value value="Red">
                  <display-value xml:lang="x-default">Red</display-value>
                </variation-attribute-value>
              </variation-attribute-values>
            </variation-attribute>
            <variation-attribute attribute-id="size" variation-attribute-id="size">
              <display-name xml:lang="x-default">Size</display-name>
              <variation-attribute-values>
                <variation-attribute-value value="S"><display-value xml:lang="x-default">S</display-value></variation-attribute-value>
                <variation-attribute-value value="M"><display-value xml:lang="x-default">M</display-value></variation-attribute-value>
                <variation-attribute-value value="L"><display-value xml:lang="x-default">L</display-value></variation-attribute-value>
              </variation-attribute-values>
            </variation-attribute>
          </attributes>
          <variants>
            <variant product-id="SHIRT-BLUE-S"/>
            <variant product-id="SHIRT-BLUE-M"/>
            <variant product-id="SHIRT-RED-M"/>
          </variants>
        </variations>
      </product>
    
      <!-- Variant products -->
      <product product-id="SHIRT-BLUE-S">
        <display-name xml:lang="x-default">Classic Cotton Shirt - Blue / S</display-name>
        <online-flag>true</online-flag>
        <variation-attribute-values>
          <variation-attribute-value attribute-id="color">Blue</variation-attribute-value>
          <variation-attribute-value attribute-id="size">S</variation-attribute-value>
        </variation-attribute-values>
      </product>
    
      <!-- Product category assignment -->
      <category-assignment category-id="electronics" product-id="PROD-001">
        <primary-flag>true</primary-flag>
      </category-assignment>
    </catalog>
    

Read the full file on GitHub · 413 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 9d ago First seen · 413 lines · 27 tokens per session scan C 242314ac30db

Subscribe to this mod's changes

sfcc-business-manager is a skill published in the GitHub repository finsilabs/awesome-ecommerce-skills (52 stars, last pushed 6mo ago), licensed MIT. It adds 27 tokens to every session and 3,832 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it C with 2 findings (hidden instructions, makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-03.

Related

Other skills, from other repositories

b2c-commerce-store-setup

Use when configuring or troubleshooting a Salesforce B2C Commerce (SFCC) storefront — including Business Manager site creation, SFRA cartridge path setup, customer groups, search index rebuilding, and key quota limits. Trigger keywords: SFCC, Commerce Cloud, Business Manager, storefront, cartridge, SFRA, site…

PranavNagrecha/AwesomeSalesforceSkills · 123 tokens

b2c-commerce-store-setup

Use when configuring or troubleshooting a Salesforce B2C Commerce (SFCC) storefront — including Business Manager site creation, SFRA cartridge path setup, customer groups, search index rebuilding, and key quota limits. Trigger keywords: SFCC, Commerce Cloud, Business Manager, storefront, cartridge, SFRA, site…

BanibrataChatterjee/AwesomeSalesforceSkills · 106 tokens

inventory-tracking-software

AI-powered inventory tracking and monitoring skill for e-commerce businesses. Designs inventory monitoring systems, low-stock alerts, reorder point calculations, and multi-channel sync strategies.

nexscope-ai/eCommerce-Skills · 0 tokens

multichannel-ecommerce

Manage e-commerce operations across multiple marketplaces and channels. Inventory sync, order routing, listing management, and unified analytics for Amazon, Shopify, Walmart, eBay, Etsy, and TikTok Shop.

nexscope-ai/eCommerce-Skills · 0 tokens

omnichannel-ecommerce

Plan and execute omnichannel e-commerce strategy. Unify selling across Amazon, Shopify, Walmart, TikTok Shop, eBay, and Etsy with consistent branding, inventory sync, and customer experience.

nexscope-ai/eCommerce-Skills · 0 tokens

table-manager

Optimize table turns, manage reservations, and reduce wait times to maximize revenue per seat. Handles booking intake, table assignment strategy, waitlist management, and provides actionable insights for seating efficiency.

cosmicstack-labs/mercury-agent-skills · 40 tokens