sfcc-platform-limits

sfcc-platform-limits is a skill for Claude Code, Codex from taurgis/sfcc-dev-mcp. It costs 61 tokens per session (946 once invoked), scanned A, original, MIT.

A guide to Salesforce B2C Commerce platform quotas and limits, such as script timeouts, outgoing request caps, session size, and file restrictions. It links common error symptoms to design changes.

In plain words
What is it for?
Use it when designing or debugging SFCC storefront controllers, hooks, jobs, integrations, sessions, custom objects, file handling, or headless APIs.
Why use it?
It helps you diagnose enforced limits and avoid designs that fail during requests or under load.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it when designing or debugging SFCC storefront controllers, hooks, jobs, integrations, sessions, custom objects, file handling, or headless APIs.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/taurgis/sfcc-dev-mcp/sfcc-platform-limits
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 taurgis/sfcc-dev-mcp --skill sfcc-platform-limits
Clone the repo
git clone --depth 1 https://github.com/taurgis/sfcc-dev-mcp

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-platform-limits

README.md
[![agentmods](https://agentmods.dev/badge/skills/taurgis/sfcc-dev-mcp/sfcc-platform-limits.svg)](https://agentmods.dev/skills/taurgis/sfcc-dev-mcp/sfcc-platform-limits)
Your own site
<a href="https://agentmods.dev/skills/taurgis/sfcc-dev-mcp/sfcc-platform-limits"><img src="https://agentmods.dev/badge/skills/taurgis/sfcc-dev-mcp/sfcc-platform-limits.svg" alt="Measured on agentmods" height="20"></a>
Per session 61 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 946 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
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.00061 $0.00946
Opus 5 $0.00030 $0.00473
Sonnet 5 $0.00012 $0.00189
Haiku 4.5 $0.00006 $0.00095

Measured 8d ago against content hash 46ecd82f3634, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-08, from the pricing page.

Security

Grade A, and why

sfcc-platform-limits scanned grade A with 0 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 8d 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.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

ai-instructions/skills/sfcc-platform-limits/SKILL.md · 90 lines

How it starts

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

SFCC Platform Limits (Quota Survival Skill)

SFCC limits are not “edge cases”; they shape correct architecture. This skill is a pragmatic guide to:

  • Recognizing limit symptoms
  • Picking the correct workaround pattern
  • Avoiding designs that will fail under load

Quick Checklist

[ ] Identify your execution context (storefront controller vs hook vs job)
[ ] Assume strict timeouts in hook/script contexts (design for the smallest budget)
[ ] Keep external calls bounded; cache aggressively; avoid chatty integrations
[ ] Never store large objects in session (store IDs; refetch/cache)
[ ] Never write files from storefront requests (offload to jobs)
[ ] Put retention policies on temporary custom objects from day one

Common Limits → Symptoms → Fix Patterns

Symptom Likely limit Fix pattern
“ScriptingTimeoutError” / request abort Storefront script timeout Move heavy work to jobs; reduce synchronous work; fail fast on services
Generic 500 from OCAPI hook Hook execution timeout Keep hooks lightweight; move heavy logic to async processing or custom endpoint
“Too many HTTPClient calls” / enforced quota Outbound call cap per request Aggregate calls (BFF), cache, pre-load via feeds/jobs
Session data truncation / instability Session size cap Store identifiers only; use cache or refetch
Errors creating custom objects CO quotas / create-per-request cap Consolidate data; implement purge jobs; avoid COs for transactional logging
“Page size limit exceeded” Rendered HTML size cap Pagination, remote includes, lazy loading, move logic out of templates
Storefront fails when writing files Storefront file I/O = 0 Use job + WebDAV download pattern
SCAPI returns 429 Rate limiting / load shedding Honor Retry-After; exponential backoff; client-side caching

Context Matters: Timeouts Differ

Design for the most restrictive context a script might run in.

  • Storefront controllers can have relatively generous execution budgets.
  • Hook/script contexts (OCAPI hooks, Page Designer scripts, etc.) can be much tighter.

Read the full file on GitHub · 90 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. 8d ago First seen · 90 lines · 61 tokens per session scan A 46ecd82f3634

Subscribe to this mod's changes

sfcc-platform-limits is a skill published in the GitHub repository taurgis/sfcc-dev-mcp (27 stars, last pushed 2d ago), licensed MIT. It adds 61 tokens to every session and 946 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

nebula-logger-plugin-development

Use this skill when the user wants to build a new plugin that extends Nebula Logger - for example, custom trigger handlers on LogEntryEvente / Logc / LogEntryc, custom purge actions, or Slack-style outbound integrations. Covers the plugin framework interfaces, LoggerPluginmdt configuration, package layout, and testing…

jongpie/NebulaLogger · 84 tokens

seller-research

Use when researching a merchant, storefront, marketplace seller, or merchant of record for a buying decision, especially when identity, refund terms, fulfillment, counterfeit risk, domain history, or independent buyer outcomes are uncertain.

cinderline/northcinder · 46 tokens

nebula-logger-install

Use this skill when the user wants to install and configure Nebula Logger in a Salesforce org for the first time. Covers package selection, installation paths, permissions, LoggerSettingsc hierarchy, and first-run troubleshooting.

jongpie/NebulaLogger · 49 tokens

nebula-logger-best-practices

Use this skill when the user wants to review, harden, or standardize Nebula Logger usage across a Salesforce team. Covers operational logging standards, environment-aware settings, limit-aware design, and governance guardrails.

jongpie/NebulaLogger · 52 tokens

scraperapi-price-monitoring

Use this skill whenever the user wants to check, track, or be alerted about product prices on Amazon, Walmart, or via Google Shopping. Trigger on: "monitor the price of this Amazon product", "did the price drop on [Walmart URL]?", "track these ASINs", "compare today's prices to last week", "alert me if [product] goes…

scraperapi/scraperapi-skills · 196 tokens

dsers-mcp-product-py

Automate DSers product import from AliExpress/Alibaba/1688 to Shopify/Wix/WooCommerce. Use when the user wants to import, edit, price, or push dropshipping products to their store via DSers. (Python version — TypeScript version is primary).

PrathamITHub/dsers-mcp-product-py · 64 tokens