skills/saleor-configurator/SKILL.md
Saleor Configurator patterns for managing store configuration as code. Use when writing config.yml, running deploy/introspect/diff commands, understanding entity identification (slug vs name), deployment pipeline order, or debugging sync issues.
npx skillsauth add saleor/agent-skills saleor-configuratorInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Guide for using Saleor Configurator — a "commerce as code" CLI that lets you define your entire Saleor store configuration in YAML and deploy it declaratively.
config.yml for a Saleor storedeploy, introspect, or diff commandsslug vs name) for each entity| Priority | Category | Impact | Prefix |
| -------- | ------------------ | -------- | ------------ |
| 1 | Config Schema | CRITICAL | config- |
| 2 | Entity Identity | CRITICAL | identity- |
| 3 | CLI Workflow | HIGH | cli- |
| 4 | Deployment | HIGH | deploy- |
| 5 | Diff & Sync | MEDIUM | diff- |
config-schema — YAML structure, all top-level keys, entity examplesidentity-strategies — Slug-based vs name-based vs singleton; which entity uses whichcli-commands — All commands, flags, env vars, credential setup, non-interactive modedeploy-pipeline — Stage order, dependency graph, selective deployment, failure handlingdiff-behavior — How diff detects changes, what triggers create/update/deleteRead individual rule files for detailed explanations and examples:
rules/config-schema.md
rules/identity-strategies.md
rules/cli-commands.md
rules/deploy-pipeline.md
rules/diff-behavior.md
For the complete guide with all rules expanded: AGENTS.md
development
Saleor storefront data + UX playbook. Covers GraphQL query design, channel handling, data contracts per surface (PLP/PDP/nav/pricing/availability/media), variant-selection UX, and Saleor-specific correctness rules. Framework-agnostic — agent inspects repo and applies conventions locally.
development
Saleor e-commerce API patterns for building storefronts. Use when working with Saleor's GraphQL API, products, variants, checkout, channels, permissions, or debugging API behavior. Framework-agnostic — applies to any Saleor storefront.
development
Saleor backend internals and behavior reference. Covers discount precedence, stock availability modes (legacy vs direct, 3.23+), Dashboard UI rules, webhook trigger conditions, denormalized field semantics, and migration footguns. Use when working with Saleor discounts or stock availability, building Dashboard UI, or debugging backend behavior.
development
Universal Saleor app development patterns. Covers the app protocol (manifest, registration, webhooks, authentication), SDK abstractions, settings persistence, and Dashboard integration. Framework-agnostic with Next.js examples.