What problem does it solve? Shopify app development involves platform-specific rules that are easy to get wrong: metafield namespaces, GraphQL query cost limits, rate limiting, and strict Built for Shopify review criteria. This Skill encodes those conventions so generated code follows Shopify best practices from the start and avoids common app review rejections. ## Core Features & Use Cases - Metafields & Metaobjects Conventions: Namespace rules ($app: vs custom), type selection, definition-first patterns, and migration scripts for bulk metafield updates. - API Throttle Handling: Throttle-aware GraphQL client with exponential backoff, cost-aware pagination, and Bulk Operations for datasets over 250 items. - Built for Shopify Compliance: Checklists covering performance budgets, Polaris UI requirements, security (OAuth, HMAC, GDPR webhooks), and common app review rejection reasons. - Use Case: When implementing a feature that writes customer loyalty data to metafields, the Skill ensures you create a metafield definition first, use the correct $app: namespace, batch writes with metafieldsSet, and handle THROTTLED errors with backoff. ## Quick Start Ask the AI to implement a Shopify feature such as storing customer loyalty tiers in metafields and have it apply the platform conventions for namespaces, throttling, and BfS compliance.