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

shopify-admin-apiShopify admin API 搜索

Agent Skill

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

总安装

489

周安装

21

GitHub Stars

19

下载量

171
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

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

简介

用于辅助 API 设计、接口文档、请求响应结构和服务集成说明。

  • 适合梳理 endpoint、生成 OpenAPI 草稿、检查字段命名、整理错误码或辅助前后端联调。
  • 使用时需要确认真实业务语义、鉴权方式、分页和错误处理规则。
  • 涉及生成接口文档时,应避免凭空补字段,最好从现有代码、schema 或接口样例中提取事实。
  • shopify-admin-api 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Shopify Admin API

Overview

The Shopify Admin API gives apps full access to a merchant's store data — products, variants, orders, customers, inventory, metafields, and more. It is available in both GraphQL (recommended) and REST flavors, with GraphQL offering precise field selection, bulk operations, and better rate limiting via the calculated cost system. Use the @shopify/shopify-api Node.js library or direct HTTP calls with an Admin API access token.

When to Use This Skill

  • When reading or writing product catalog data (titles, variants, pricing, images, inventory)
  • When fulfilling or updating orders programmatically from an external system
  • When syncing customer records between Shopify and a CRM or ERP
  • When running bulk data exports or imports using Bulk Operations
  • When building an internal tool that needs merchant store access via a Custom App token
  • When automating inventory adjustments from a warehouse management system

Core Instructions

  1. Obtain an Admin API access token For a custom app (single store), create it in Admin → Settings → Apps and Sales Channels → Develop apps. For a public/partner app, the token is obtained after OAuth (see @shopify-app-development). #.env SHOPIFY_ADMIN_API_TOKEN=shpat_xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx SHOPIFY_SHOP=mystore.myshopify.com SHOPIFY_API_VERSION=2025-01
  2. Initialize the Admin API client ` // lib/shopify-admin.ts import {shopifyApi, ApiVersion, Session} from "@shopify/shopify-api"; import "@shopify/shopify-api/adapters/node"; const shopify = shopifyApi({apiKey: process.env.SHOPIFY_API_KEY!, apiSecretKey: process.env.SHOPIFY_API_SECRET!, scopes: ["read_products", "write_products", "read_orders", "write_orders"], hostName: process.env.SHOPIFY_APP_URL!, apiVersion: ApiVersion.January25, isEmbeddedApp: false, // true for merchant-facing embedded apps}); // For custom apps with a static token const session = new Session({id: offline_${process.env.SHOPIFY_SHOP}, shop: process.env.SHOPIFY_SHOP!, state: "", isOnline: false, accessToken: process.env.SHOPIFY_ADMIN_API_TOKEN,}); export const adminClient = new shopify.clients.Graphql({session}); export const restClient = new shopify.clients.Rest({session}); `
  3. Query products with GraphQL ` // Fetch products with variants and inventory export async function getProducts(cursor?: string) {const response = await adminClient.request( query GetProducts($cursor: String) {products(first: 50, after: $cursor) {pageInfo {hasNextPage endCursor} edges {node {id title status variants(first: 100) {edges {node {id sku price inventoryQuantity inventoryItem {id}}}}}}}} , {variables: {cursor}}); return response.data.products;} // Update a product's price via mutation export async function updateVariantPrice(variantId: string, price: string) {const response = await adminClient.request( mutation UpdateVariantPrice($id: ID!, $price: Money!) {productVariantUpdate(input: {id: $id, price: $price}) {productVariant {id price} userErrors {field message}}} , {variables: {id: variantId, price}}); const {userErrors} = response.data.productVariantUpdate; if (userErrors.length > 0) throw new Error(userErrors[0].message); return response.data.productVariantUpdate.productVariant;} `
  4. Fetch and update orders ` // Query unfulfilled orders export async function getUnfulfilledOrders() {const response = await adminClient.request( query {orders(first: 50, query: "fulfillment_status:unfulfilled financial_status:paid") {edges {node {id name email createdAt lineItems(first: 50) {edges {node {title quantity variant {id sku}}}} shippingAddress {firstName lastName address1 city province zip country}}}}} ); return response.data.orders.edges.map(({node}: any) => node);} // Mark an order as fulfilled export async function fulfillOrder(orderId: string, trackingNumber: string, trackingCompany: string) {// First get fulfillment order ID const orderResponse = await adminClient.request( query GetFulfillmentOrders($id: ID!) {order(id: $id) {fulfillmentOrders(first: 5) {edges {node {id status lineItems(first: 20) {edges {node {id remainingQuantity}}}}}}}} , {variables: {id: orderId}}); const fulfillmentOrder = orderResponse.data.order.fulfillmentOrders.edges[0]?.node; if (!fulfillmentOrder) throw new Error("No fulfillment order found"); const response = await adminClient.request( mutation FulfillOrder($fulfillment: FulfillmentInput!) {fulfillmentCreate(fulfillment: $fulfillment) {fulfillment {id status} userErrors {field message}}} , {variables: {fulfillment: {lineItemsByFulfillmentOrder: [{fulfillmentOrderId: fulfillmentOrder.id}], trackingInfo: {number: trackingNumber, company: trackingCompany}, notifyCustomer: true,},},}); return response.data.fulfillmentCreate;} `
  5. Run Bulk Operations for large datasets For exporting thousands of products or orders, use Bulk Operations (GraphQL only) — they run asynchronously and return a JSONL file URL: ` // Start a bulk operation export async function startBulkProductExport() {const response = await adminClient.request( mutation {bulkOperationRunQuery(query: """ {products {edges {node {id title status variants {edges {node {id sku price inventoryQuantity}}}}}}} """) {bulkOperation {id status} userErrors {field message}}} ); return response.data.bulkOperationRunQuery.bulkOperation;} // Poll for completion and download URL export async function getBulkOperationStatus() {const response = await adminClient.request( query {currentBulkOperation {id status errorCode objectCount url # JSONL download URL — available when status is COMPLETED}} ); return response.data.currentBulkOperation;} `

Examples

Customer search and update via REST API

// REST is still valid for simple lookups where GraphQL overhead isn't worth it
export async function searchCustomers(email: string) {
  const response = await restClient.get({
    path: "customers/search",
    query: { query: `email:${email}` },
  });
  return response.body.customers;
}

export async function tagCustomer(customerId: number, tags: string[]) {
  const response = await restClient.put({
    path: `customers/${customerId}`,
    data: { customer: { id: customerId, tags: tags.join(",") } },
  });
  return response.body.customer;
}

Inventory adjustment

export async function adjustInventory(inventoryItemId: string, locationId: string, delta: number) {
  const response = await adminClient.request(`
    mutation AdjustInventory($input: InventoryAdjustQuantitiesInput!) {
      inventoryAdjustQuantities(input: $input) {
        inventoryAdjustmentGroup {
          changes {
            name
            delta
            item { id }
            location { name }
          }
        }
        userErrors { field message }
      }
    }
  `, {
    variables: {
      input: {
        name: "available",
        reason: "correction",
        changes: [
          {
            inventoryItemId,
            locationId,
            delta,
          },
        ],
      },
    },
  });
  return response.data.inventoryAdjustQuantities;
}

Best Practices

  • Prefer GraphQL over REST — GraphQL has a cost-based rate limit (1000 cost units/second) that's more forgiving than REST's 40 requests/second; it also avoids over-fetching
  • Use Bulk Operations for exports above 250 records — never page through thousands of records manually; Bulk Operations handle up to millions of records in a single async job
  • Always handle userErrors on mutations — a 200 HTTP response does not mean success; check userErrors array before treating a mutation as successful
  • Use gid://shopify/Product/123 format for IDs — Admin API GraphQL uses global IDs; never send numeric IDs without the GID prefix
  • Implement exponential backoff — respect Retry-After headers and implement backoff on 429 and 503 responses
  • Cache immutable product data — product titles and handles rarely change; cache them with a reasonable TTL to reduce API calls
  • Scope to minimum required permissions — requesting fewer scopes reduces merchant trust friction at install time

Common Pitfalls

ProblemSolution
Cost exceeds bucket size GraphQL errorReduce the first: argument on connections (use 50 instead of 250) or restructure the query to avoid deeply nested connections
Numeric vs GID ID format mismatchAlways convert REST numeric IDs to GID format: gid://shopify/Product/${numericId}
Bulk operation URL returns 403The JSONL URL is a time-limited signed S3 URL — download it immediately after polling COMPLETED status
Order fulfillment fails with FULFILLMENT_ORDER_NOT_FOUNDOrders must be fulfilled via Fulfillment Orders API (not legacy Fulfillments API) since API version 2022-07
Webhook events trigger duplicate processingUse the admin_graphql_api_id in webhook payloads and implement idempotency keying
Customer update clears existing tagsWhen updating tags, always fetch current tags first and append — the API replaces, not merges

Related Skills

  • @shopify-app-development
  • @shopify-webhooks
  • @shopify-metafields
  • @shopify-storefront-api
  • @bulk-data-operations

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

33.32%
按下载量换算57

Claude

29.03%
按下载量换算50

Cursor

19.39%
按下载量换算33

Gemini CLI

10.24%
按下载量换算18

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills