Pre-built store configuration templates for common business types. Use whenever user asks for templates, examples, starting points, or mentions fashion/electronics/subscription store setup. Not for custom product type design (use product-modeling).
Standardmäßig ist der Prompt ausgewählt, der zuerst die Quelle prüft. Sie können zu einem direkten Befehl wechseln oder eine lokale Kopie herunterladen.
Quelldateien prüfen
Lesen Sie SKILL.md und alle von SkillsMP angezeigten Begleitdateien, bevor Sie sich für eine Installation entscheiden.
Mit Codex oder Claude installieren Kopieren Sie diesen Prompt, fügen Sie ihn in Codex, Claude oder einen anderen Assistant ein und lassen Sie die Skill-Seite prüfen und installieren.
Ein direkter Befehl überspringt den Prüf-Prompt. Prüfen Sie die Quelle, bevor Sie ihn ausführen.
Pre-built store configuration templates for common business types. Use whenever user asks for templates, examples, starting points, or mentions fashion/electronics/subscription store setup. Not for custom product type design (use product-modeling).
Recipes are ready-to-use config.yml templates for common store types. Pick one that matches your business, customize it, and deploy. They save you from building your store configuration from scratch.
When to Use
"How do I set up a fashion store?"
"Is there a template for electronics?"
"Can I see an example config.yml?"
"What's a good starting point for my store?"
"How do I set up a subscription service?"
When NOT looking for CLI commands -- use configurator-cli instead
When NOT designing custom product types -- use product-modeling instead
Electronics Store -- Single channel (USD), product types for Smartphones, Laptops, Tablets, Accessories, and Software. Attributes include Brand, Storage, RAM, Screen Size, and Warranty. See templates/electronics-store.yml.
Subscription Service -- Subscription portal channel, product types for Monthly/Annual subscriptions, One-Time Purchases, and Add-Ons. Attributes include Plan Tier, Billing Cycle, User Limit, and Storage Limit. See templates/subscription-service.yml.
Customization Tips
After copying a recipe:
Rename channels to match your brand and regions
Adjust currency and country codes for your markets
Modify categories for your actual product catalog
Add or remove product types you don't need
Test on staging first before deploying to production
Common Mistakes
Mistake
Fix
Using a recipe without customizing identifiers
Update all slugs and names to match your brand before deploying
Not adjusting currency/country codes
Change currencyCode and defaultCountry to your actual markets
Deploying a recipe straight to production
Always test on a staging instance first
Keeping entity types you don't need
Remove unused product types, categories, etc. to keep your config clean
Forgetting to update channel references
Products reference channels by slug -- make sure they match after renaming
Creating Your Own Recipe
Template Structure
A recipe template should follow this structure:
# Recipe: [Business Type] Store# Description: [What this recipe sets up]# Customize: [List key things users should change]channels:-name:"Main Store"# <- User should renameslug:"main"# <- User should updatecurrencyCode:USD# <- User should set regiondefaultCountry:USisActive:trueproductTypes:# Each type should have a comment explaining its purpose-name:"[Type Name]"isShippingRequired:trueproductAttributes: [...]
variantAttributes: [...]
categories:# Keep hierarchy to 3 levels max-name:"[Root Category]"slug:"[root-slug]"subcategories: [...]