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.
npx skills add finsilabs/awesome-ecommerce-skills --skill sfcc-business-managergit clone --depth 1 https://github.com/finsilabs/awesome-ecommerce-skillsWrote 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.
[](https://agentmods.dev/skills/finsilabs/awesome-ecommerce-skills/sfcc-business-manager)<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.
<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>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.
| Model | Per session | Once 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 |
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, { 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
-
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 -
Import products via XML catalog import
SFCC catalog XML follows Demandware's
catalog.xsdschema. 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>
What ships with it
7 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.
- evals/catalog-xml-structure-and-variation-prod/criteria.json 2.6 KB
- evals/catalog-xml-structure-and-variation-prod/task.md 1.5 KB
- evals/import-job-automation-via-webdav-and-job/criteria.json 2.4 KB
- evals/import-job-automation-via-webdav-and-job/task.md 1.8 KB
- evals/site-preferences-xml-and-cartridge-acces/criteria.json 2.6 KB
- evals/site-preferences-xml-and-cartridge-acces/task.md 1.7 KB
- tile.json 231 B
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.
- 9d ago First seen · 413 lines · 27 tokens per session scan C 242314ac30db
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.
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…
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…
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.
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.
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.
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.