Install
$ agentstack add skill-salesforcecommercecloud-b2c-developer-tooling-sfnext-configuration ✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ✓ Network access No
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ● Environment & secrets Used
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
Verified badge
Passed review? Show it. Paste this badge into your README, it links to the public security report.
Reliability & compatibility
Declared compatibility
Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.
We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.
How agent discovery & health will work →About
Configuration Skill
This skill covers the Storefront Next configuration system — centralized in config.server.ts with environment variable overrides.
Overview
All configuration is centralized in config.server.ts with typed defaults. Environment variables (via .env files or MRT settings) override these defaults. The system provides type-safe access with automatic parsing and validation.
Adding Configuration
1. Define the type in src/types/config.ts
export type Config = {
app: {
myFeature: {
enabled: boolean;
maxItems: number;
};
};
};
2. Set defaults in config.server.ts
export default defineConfig({
app: {
myFeature: {
enabled: false,
maxItems: 10,
},
},
});
3. Override via environment variables
PUBLIC__app__myFeature__enabled=true
PUBLIC__app__myFeature__maxItems=20
Accessing Configuration
In React Components
import { useConfig } from '@salesforce/storefront-next-runtime/config';
export function MyComponent() {
const config = useConfig();
if (config.myFeature.enabled) {
const maxItems = config.myFeature.maxItems;
// Feature code
}
}
In Server Loaders/Actions
import { getConfig } from '@salesforce/storefront-next-runtime/config';
export function loader({context}: LoaderFunctionArgs) {
const config = getConfig(context); // context is required on server
if (config.myFeature.enabled) {
// Loader code
}
}
In Browser Code (Non-Route Modules)
import { getConfig } from '@salesforce/storefront-next-runtime/config';
export function getFeatureFlag() {
const config = getConfig(); // No context needed in browser (uses window.__APP_CONFIG__)
return config.myFeature.enabled;
}
Note: getConfig() and useConfig() return AppConfig — the app section of the full config. Access properties directly (e.g., config.myFeature.enabled) without the app prefix.
Environment Variable Rules
# Pattern: PUBLIC__app__{path}__{to}__{property}=value
PUBLIC__app__commerce__api__clientId=abc123
# Maps to config.app.commerce.api.clientId
# Accessed as config.commerce.api.clientId
| Rule | Detail | | ----------------- | ---------------------------------------------- | | PUBLIC__ prefix | Exposed to browser (client-safe) | | No prefix | Server-only (secrets) | | __ separator | Navigate nested paths | | Auto-parsing | Numbers, booleans, JSON parsed automatically | | Validation | Paths must exist in config.server.ts | | Depth limit | Maximum 10 levels | | MRT limits | Names max 512 chars; total PUBLIC__ max 32KB |
Multi-Site Configuration
PUBLIC__app__commerce__sites='[
{
"id": "RefArchGlobal",
"defaultLocale": "en-US",
"defaultCurrency": "USD",
"supportedLocales": [
{"id": "en-US", "preferredCurrency": "USD"},
{"id": "de-DE", "preferredCurrency": "EUR"}
],
"supportedCurrencies": ["USD", "EUR"]
}
]'
const config = getConfig(context);
const currentSite = config.commerce.sites[0];
const locale = currentSite.defaultLocale; // "en-US"
const currency = currentSite.defaultCurrency; // "USD"
Security
# Client-safe (PUBLIC__ prefix)
PUBLIC__app__commerce__api__clientId=abc123
# Server-only (no prefix — never sent to client)
COMMERCE_API_SLAS_SECRET=your-secret
Read server-only secrets directly from process.env — never add them to the config system.
Common Pitfalls
| Pitfall | Problem | Solution | | ----------------- | ------------------------------------------ | -------------------------------------------------- | | Missing context | getConfig() returns undefined in loaders | Use getConfig(context) on server | | Typo in env var | Variable silently ignored | Validation catches paths not in config.server.ts | | Exposing secrets | Sensitive data in browser | Use no-prefix variables; access via process.env |
Related Skills
storefront-next:sfnext-project-setup- Initial environment setup and.envconfigurationstorefront-next:sfnext-data-fetching- Using config in loader functionsstorefront-next:sfnext-deployment- MRT environment variable configuration
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: SalesforceCommerceCloud
- Source: SalesforceCommerceCloud/b2c-developer-tooling
- License: Apache-2.0
- Homepage: https://salesforcecommercecloud.github.io/b2c-developer-tooling/
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet, be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.