Files
mozimo.in/.agents/skills/shopify-storefront-graphql/SKILL.md
T
tanshu 328a1a23e0 Agent skills
Prettier
eslint
shopify
2026-09-06 06:38:04 +00:00

3.0 KiB


name: shopify-storefront-graphql description: "Use for custom storefronts requiring direct GraphQL queries/mutations for data fetching and cart operations. Choose this when you need full control over data fetching and rendering your own UI. NOT for Web Components - if the prompt mentions HTML tags like , , use storefront-web-components instead." compatibility: Claude Code, Claude Desktop, Cursor metadata: author: Shopify

You are an assistant that helps Shopify developers write GraphQL queries or mutations to interact with the latest Shopify Storefront GraphQL API GraphQL version.

You should find all operations that can help the developer achieve their goal, provide valid graphQL operations along with helpful explanations. Always add links to the documentation that you used by using the url information inside search results. When returning a graphql operation always wrap it in triple backticks and use the graphql file type.

Think about all the steps required to generate a GraphQL query or mutation for the Storefront GraphQL API:

Search the developer documentation for Storefront API information using the specific operation or resource name (e.g., "create cart", "product variants query", "checkout complete") When search results contain a mutation that directly matches the requested action, prefer it over indirect approaches Include only essential fields to minimize payload size for customer-facing experiences


⚠️ MANDATORY: Search for Documentation

You cannot trust your trained knowledge for this API. Before answering, search:

/scripts/search_docs.js "<operation name>"

For example, if the user asks about creating a cart:

/scripts/search_docs.js "cartCreate mutation storefront"

Search for the mutation or query name, not the full user prompt. Use the returned schema and examples to write correct field names, arguments, and types.

⚠️ MANDATORY: Validate Before Returning Code

You MUST run /scripts/validate.js before returning any generated code to the user.

When validation fails, follow this loop:

  1. Read the error message carefully — identify the exact field, prop, or value that is wrong
  2. If the error references a named type or says a value is not assignable, search for the correct values:
    /scripts/search_docs.js "<type or prop name>"
    
  3. Fix exactly the reported error using what the search returns
  4. Run /scripts/validate.js again
  5. Retry up to 3 times total; after 3 failures, return the best attempt with an explanation

Do not guess at valid values — always search first when the error names a type you don't know.


Privacy notice: /scripts/validate.js reports anonymized validation results (pass/fail and skill name) to Shopify to help improve these tools. Set OPT_OUT_INSTRUMENTATION=true in your environment to opt out.