Token导航 LogoToken导航TokenDH.com
研究检索敏感数据github未标认证来源可访问许可证需确认审计通过

shopify-storefront-apiShopify storefront API 搜索

Agent Skill

用于辅助 API 设计、接口文档、请求响应结构和服务集成说明。它适合让 Agent 梳理 endpoint、生成 OpenAPI 草稿、检查字段命名、整理错误码或辅助前后端联调。使用时需要确认真实业务语义、鉴权方式、分页和错误处理规则;涉及生成接口文档时,应避免凭空补字段,最好从现有代码、schema 或接口样例中提取事实。

总安装

564

周安装

24

GitHub Stars

19

下载量

198
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:shopify-storefront-api(Shopify storefront API 搜索)
来源仓库:https://github.com/finsilabs/awesome-ecommerce-skills
仓库路径:skills/shopify-storefront-api
安装命令:
npx skills add https://github.com/finsilabs/awesome-ecommerce-skills --skill shopify-storefront-api
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/finsilabs/awesome-ecommerce-skills --skill shopify-storefront-api

简介

用于辅助 Shopify Storefront API 的设计与文档整理工作。

  • 适合梳理 GraphQL endpoint、字段命名规范及错误码定义。
  • 使用时需结合实际业务语义与鉴权方式,避免凭空补充未经验证的字段。
  • 建议优先参考现有代码、schema 或接口样例提取事实性信息。
  • shopify-storefront-api 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Shopify Storefront API

Overview

The Shopify Storefront API is a public-facing GraphQL API that provides read and write access to a store's products, collections, cart, and checkout from any frontend. It uses a Storefront Access Token (distinct from Admin API tokens) and is safe to expose in client-side JavaScript. Use it to build headless storefronts with Next.js, Remix/Hydrogen, or any JS framework.

When to Use This Skill

  • When building a headless Shopify storefront with a custom frontend framework
  • When creating a React Native or Flutter mobile app that needs product and cart data
  • When embedding a Shopify buy button or product widget in a non-Shopify site
  • When using Shopify Hydrogen (Remix-based) for a fully custom storefront experience
  • When needing real-time product availability or pricing without the Admin API overhead
  • When implementing cart persistence across sessions with Shopify's hosted cart

Core Instructions

  1. Create a Storefront Access Token In Shopify Admin → Apps → Develop apps → Your App → API credentials → Storefront API access token. Or via the Admin API: ` // Via Admin API (one-time setup) const token = await admin.graphql( mutation {storefrontAccessTokenCreate(input: {title: "Headless Frontend"}) {storefrontAccessToken {accessToken title} userErrors {field message}}} ); Storefront Access Tokens do not use the shpat_` prefix (that prefix is for Admin API tokens). Storefront tokens are opaque strings safe to use in browser code — they only allow storefront-scoped operations.
  2. Set up the Storefront API client Using the official @shopify/storefront-api-client: npm install @shopify/storefront-api-client // lib/shopify.ts import {createStorefrontApiClient} from "@shopify/storefront-api-client"; export const storefront = createStorefrontApiClient({storeDomain: process.env.NEXT_PUBLIC_SHOPIFY_STORE_DOMAIN!, // e.g. "mystore.myshopify.com" apiVersion: "2025-01", publicAccessToken: process.env.NEXT_PUBLIC_SHOPIFY_STOREFRONT_TOKEN!,}); For server-side calls with a private access token (higher rate limits): export const storefrontServer = createStorefrontApiClient({storeDomain: process.env.SHOPIFY_STORE_DOMAIN!, apiVersion: "2025-01", privateAccessToken: process.env.SHOPIFY_STOREFRONT_PRIVATE_TOKEN!,});
  3. Query products and collections ` // lib/products.ts export async function getProducts(first = 20, after?: string) {const {data, errors} = await storefront.request( query GetProducts($first: Int!, $after: String) {products(first: $first, after: $after, sortKey: BEST_SELLING) {pageInfo {hasNextPage endCursor} edges {node {id title handle availableForSale priceRange {minVariantPrice {amount currencyCode} maxVariantPrice {amount currencyCode}} images(first: 1) {edges {node {url altText width height}}} variants(first: 10) {edges {node {id title availableForSale selectedOptions {name value} price {amount currencyCode}}}}}}}} , {variables: {first, after}}); if (errors) throw new Error(errors.message); return data.products;} `
  4. Create and manage a cart ` // lib/cart.ts // Create a new cart export async function cartCreate(lines: {merchandiseId: string; quantity: number}[]) {const {data} = await storefront.request( mutation CartCreate($lines: [CartLineInput!]) {cartCreate(input: {lines: $lines}) {cart {id checkoutUrl lines(first: 50) {edges {node {id quantity merchandise {... on ProductVariant {id title price {amount currencyCode} product {title handle}}}}}} cost {subtotalAmount {amount currencyCode} totalAmount {amount currencyCode}}} userErrors {field message}}} , {variables: {lines}}); return data.cartCreate;} // Add lines to existing cart export async function cartLinesAdd(cartId: string, lines: {merchandiseId: string; quantity: number}[]) {const {data} = await storefront.request( mutation CartLinesAdd($cartId: ID!, $lines: [CartLineInput!]!) {cartLinesAdd(cartId: $cartId, lines: $lines) {cart {id checkoutUrl} userErrors {field message}}} , {variables: {cartId, lines}}); return data.cartLinesAdd;} `
  5. Persist cart ID and redirect to checkout // hooks/useCart.ts import {useState, useEffect} from "react"; import {cartCreate, cartLinesAdd} from "../lib/cart"; const CART_ID_KEY = "shopify_cart_id"; export function useCart() {const [cartId, setCartId] = useState<string | null>(null); const [checkoutUrl, setCheckoutUrl] = useState<string | null>(null); useEffect(() => {setCartId(localStorage.getItem(CART_ID_KEY));}, []); const addToCart = async (variantId: string, quantity = 1) => {const lines = [{merchandiseId: variantId, quantity}]; if (cartId) {const result = await cartLinesAdd(cartId, lines); setCheckoutUrl(result.cart.checkoutUrl);} else {const result = await cartCreate(lines); const newCartId = result.cart.id; localStorage.setItem(CART_ID_KEY, newCartId); setCartId(newCartId); setCheckoutUrl(result.cart.checkoutUrl);}}; const goToCheckout = () => {if (checkoutUrl) window.location.href = checkoutUrl;}; return {addToCart, goToCheckout, cartId};}

Examples

Product Detail Page with variant selection (Next.js)

// app/products/[handle]/page.tsx
import { storefront } from "@/lib/shopify";

async function getProduct(handle: string) {
  const { data } = await storefront.request(`
    query GetProduct($handle: String!) {
      product(handle: $handle) {
        id
        title
        descriptionHtml
        seo { title description }
        images(first: 10) {
          edges { node { url altText } }
        }
        options {
          id name values
        }
        variants(first: 100) {
          edges {
            node {
              id
              availableForSale
              selectedOptions { name value }
              price { amount currencyCode }
              compareAtPrice { amount currencyCode }
            }
          }
        }
      }
    }
  `, { variables: { handle } });
  return data.product;
}

export default async function ProductPage({ params }: { params: { handle: string } }) {
  const product = await getProduct(params.handle);
  // Render product with client-side variant picker
  return <ProductDetail product={product} />;
}

// Generate static params for all products
export async function generateStaticParams() {
  const { data } = await storefront.request(`
    query { products(first: 200) { edges { node { handle } } } }
  `);
  return data.products.edges.map(({ node }: { node: { handle: string } }) => ({
    handle: node.handle,
  }));
}

Predictive search

export async function predictiveSearch(query: string) {
  const { data } = await storefront.request(`
    query PredictiveSearch($query: String!) {
      predictiveSearch(query: $query, limit: 5, types: [PRODUCT, COLLECTION, ARTICLE]) {
        products {
          id title handle
          featuredImage { url altText }
          priceRange { minVariantPrice { amount currencyCode } }
        }
        collections {
          id title handle
          image { url altText }
        }
      }
    }
  `, { variables: { query } });
  return data.predictiveSearch;
}

Best Practices

  • Use private tokens server-side — private Storefront Access Tokens have higher rate limits (1000 req/s vs 100 req/s) and should never be exposed to browsers
  • Fetch product data at build time when possible (ISR or SSG) — the Storefront API rate limits apply per store, not per customer
  • Always check availableForSale on both product and variant before showing Add-to-Cart — a product can be available while individual variants are sold out
  • Paginate with after cursors, not offsets — the Storefront API uses cursor-based pagination; store endCursor for next-page queries
  • Cache collection and product queries with Next.js fetch cache tags or React cache — product data rarely changes in real time
  • Use @inContext directive for international pricing — @inContext(country: CA, language: EN) returns prices in the buyer's currency
  • Fragment reuse — define GraphQL fragments (e.g., ProductFragment) to avoid duplicating field selections across queries
  • Handle userErrors on all mutations — cart mutations return userErrors array; check it before updating local state

Common Pitfalls

ProblemSolution
Rate limit errors (429)Use private access token server-side and implement request batching; avoid N+1 product queries
Cart ID lost after page reloadPersist cartId in localStorage or a cookie; create a new cart only if none exists
Product prices show in wrong currencyAdd @inContext(country: $country) directive and pass buyer's country via geolocation
product(handle:) returns nullHandle slugified handles correctly — Shopify handles are lowercase with hyphens; check exact slug
Checkout redirect fails on mobile SafariUse window.location.href = checkoutUrl inside a user gesture handler, not async callback
Variant not found when selecting optionsUse client-side filtering of variants.edges by matching all selectedOptions, not just one

Related Skills

  • @shopify-admin-api
  • @shopify-app-development
  • @shopify-checkout-extensions
  • @headless-commerce-architecture
  • @graphql-api-design

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

36.06%
按下载量换算71

Claude

32.59%
按下载量换算65

Cursor

17.72%
按下载量换算35

Gemini CLI

8.81%
按下载量换算17

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills