What problem does it solve? Developers integrating Saleor's headless commerce backend must correctly wire up GraphQL API queries, app registration, signed webhook handling, and dashboard UI extensions, which involves many platform-specific conventions that are easy to get wrong. ## Core Features & Use Cases - Storefront GraphQL Integration: Query channel-scoped product catalogs with cursor pagination, authenticate customers, and complete checkouts via typed GraphQL operations. - Saleor App Development: Bootstrap apps with @saleor/app-sdk, declare manifests with permissions and webhook subscriptions, and verify HMAC-signed webhook payloads using SaleorAsyncWebhook. - Dashboard Extensions: Inject custom UI panels into the Saleor Dashboard via App Extensions and communicate with the host using app-bridge actions. - Use Case: A logistics startup needs to react when orders are placed. Use this Skill to scaffold a Next.js Saleor App whose ORDER_CREATED webhook securely receives order data and hands it to a fulfillment pipeline. ## Quick Start Ask the AI to scaffold a Saleor App with a manifest, registration endpoint, and a secure ORDER_CREATED webhook handler using the Saleor app-sdk.