Token导航 LogoToken导航TokenDH.com
运维和基础设施敏感数据github未标认证来源可访问许可证需确认审计异常

shopify-developerShopify 开发者

Agent Skill

shopify-developer 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

517

周安装

22

GitHub Stars

9

下载量

181
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/cathrynlavery/shopify-developer-skill --skill shopify-developer

简介

shopify-developer 提供 Shopify 生态的全链路开发支持,涵盖 Admin 与 Storefront API 的 GraphQL 操作封装。

  • 适用于主题定制、应用开发与电商自动化场景,支持商品、订单与客户数据的读写与管理。
  • 所有请求必须携带有效 Access Token 并使用季度版本号(如 2026-01),禁止硬编码凭证。
  • API 端点分为后台管理与前端商店两类,分别对应不同的权限范围与安全策略,需按需选用。
  • 涉及资金或客户数据操作时应开启双重确认机制,避免误删或重复扣款等事故,建议沙箱先行。

SKILL.md

Shopify Developer

Use this skill as the coordination hub. Keep implementation details in references/ files and load only the file(s) needed for the task.

Authentication

Use quarterly API versions in all endpoints, for example 2026-01.

Admin GraphQL endpoint:

https://${SHOP}.myshopify.com/admin/api/${API_VERSION}/graphql.json

Admin API headers:

X-Shopify-Access-Token: ${SHOPIFY_ACCESS_TOKEN}
Content-Type: application/json

Storefront GraphQL endpoint:

https://${SHOP}.myshopify.com/api/${API_VERSION}/graphql.json

Storefront API headers:

X-Shopify-Storefront-Access-Token: ${SHOPIFY_STOREFRONT_TOKEN}
Content-Type: application/json

Source environment variables from ~/.agents/.env before running commands.

API Conventions

  • Prefer GraphQL over REST for new work.
  • Include API version in the URL; update quarterly.
  • Paginate with cursors (first/after) rather than page numbers.
  • Handle both top-level errors and mutation userErrors.
  • Budget GraphQL query cost and throttle based on available points.
  • Use bulk operations for large export/import workloads.
  • Prefer idempotent mutation patterns for retry-safe writes.

Core Workflows

Theme development pipeline:

  • Pull current theme state, iterate in local dev, push to draft first.
  • Validate theme editor behavior (sections, blocks, settings) before live publish.
  • Reference: references/theme-architecture.md, references/liquid.md.

Product and metafield management:

  • Define metafield/metaobject schemas first, then write values through Admin API.
  • Access values in Liquid and Storefront API using type-safe patterns.
  • Reference: references/admin-api.md, references/metafields-metaobjects.md.

Checkout customization:

  • Use Checkout UI Extensions and Shopify Functions; avoid legacy checkout patterns.
  • Separate UI concerns (extensions) from pricing/fulfillment logic (functions).
  • Reference: references/checkout-extensibility.md, references/shopify-functions.md.

Reference Files

FileWhen to read
references/admin-api.mdProduct/order/customer/inventory GraphQL workflows; bulk operations. Grep hint: bulkOperation.
references/storefront-api.mdHeadless storefront queries, cart operations, customer account flows, localization. Grep hint: cart.
references/metafields-metaobjects.mdMetafield types, definitions, Liquid access, metaobject CRUD. Grep hint: metafieldsSet.
references/liquid.mdLiquid objects, filters, tags, render patterns, metafield rendering, performance tuning.
references/theme-architecture.mdOS 2.0 structure, section schema, templates, app blocks, CLI deployment flow.
references/checkout-extensibility.mdCheckout UI extensions, web pixels, migration timelines, post-purchase extensions.
references/shopify-functions.mdFunction types, WASM constraints, implementation/testing, Scripts migration path.
references/webhooks-events.mdWebhook topics, compliance webhooks, HMAC verification, retries/idempotency.
references/platform-limits.mdAPI versioning, limits, deprecation timelines, plan-specific capabilities.

Gotchas

  1. Use .value when rendering metafields in Liquid.
  2. Use metafieldsDelete (plural), not singular deletion mutation names.
  3. Do not rely on checkout.liquid; migrate to checkout extensibility.
  4. Plan Scripts migration before June 30, 2026 sunset.
  5. Treat REST Admin API as maintenance-only for new implementation.
  6. Rotate to supported API versions before the 12-month support window ends.
  7. Implement idempotency keys for retry-safe writes before April 1, 2026 enforcement.
  8. Remove deprecated Storefront tax fields during API upgrades.
  9. Do not hand-edit config/settings_data.json; use Theme Editor.
  10. Keep Shopify Functions logic minimal to stay inside strict runtime limits.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

34.8%
按下载量换算63

Claude

30.67%
按下载量换算56

Cursor

17.74%
按下载量换算32

Gemini CLI

9.5%
按下载量换算17

安全审计

Gen Agent Trust Hub

未通过

Socket

通过

Snyk

可疑

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills