shopify-development — community shopify-development, community, ide skills, Claude Code, Cursor, Windsurf

v1.0.0

关于此技能

Decentralized Pawn Shop Protocol on Solana built with Anchor. Defi

Dr-SoloDev Dr-SoloDev
[2]
[0]
更新于: 4/7/2026

Killer-Skills Review

Decision support comes first. Repository text comes second.

Reference-Only Page Review Score: 3/11

This page remains useful for operators, but Killer-Skills treats it as reference material instead of a primary organic landing page.

Quality floor passed for review
Review Score
3/11
Quality Score
55
Canonical Locale
en
Detected Body Locale
en

Decentralized Pawn Shop Protocol on Solana built with Anchor. Defi

核心价值

Decentralized Pawn Shop Protocol on Solana built with Anchor. Defi

适用 Agent 类型

Suitable for operator workflows that need explicit guardrails before installation and execution.

赋予的主要能力 · shopify-development

! 使用限制与门槛

Why this page is reference-only

  • - Current locale does not satisfy the locale-governance contract.
  • - The page lacks a strong recommendation layer.
  • - The page lacks concrete use-case guidance.
  • - The page lacks explicit limitations or caution signals.

Source Boundary

The section below is imported from the upstream repository and should be treated as secondary evidence. Use the Killer-Skills review above as the primary layer for fit, risk, and installation decisions.

评审后的下一步

先决定动作,再继续看上游仓库材料

Killer-Skills 的主价值不应该停在“帮你打开仓库说明”,而是先帮你判断这项技能是否值得安装、是否应该回到可信集合复核,以及是否已经进入工作流落地阶段。

实验室 Demo

Browser Sandbox Environment

⚡️ Ready to unleash?

Experience this Agent in a zero-setup browser environment powered by WebContainers. No installation required.

Boot Container Sandbox

常见问题与安装步骤

以下问题与步骤与页面结构化数据保持一致,便于搜索引擎理解页面内容。

? FAQ

shopify-development 是什么?

Decentralized Pawn Shop Protocol on Solana built with Anchor. Defi

如何安装 shopify-development?

运行命令:npx killer-skills add Dr-SoloDev/ginva/shopify-development。支持 Cursor、Windsurf、VS Code、Claude Code 等 19+ IDE/Agent。

shopify-development 支持哪些 IDE 或 Agent?

该技能兼容 Cursor, Windsurf, VS Code, Trae, Claude Code, OpenClaw, Aider, Codex, OpenCode, Goose, Cline, Roo Code, Kiro, Augment Code, Continue, GitHub Copilot, Sourcegraph Cody, and Amazon Q Developer。可使用 Killer-Skills CLI 一条命令通用安装。

安装步骤

  1. 1. 打开终端

    在你的项目目录中打开终端或命令行。

  2. 2. 执行安装命令

    运行:npx killer-skills add Dr-SoloDev/ginva/shopify-development。CLI 会自动识别 IDE 或 AI Agent 并完成配置。

  3. 3. 开始使用技能

    shopify-development 已启用,可立即在当前项目中调用。

! 参考页模式

此页面仍可作为安装与查阅参考,但 Killer-Skills 不再把它视为主要可索引落地页。请优先阅读上方评审结论,再决定是否继续查看上游仓库说明。

Upstream Repository Material

The section below is imported from the upstream repository and should be treated as secondary evidence. Use the Killer-Skills review above as the primary layer for fit, risk, and installation decisions.

Upstream Source

shopify-development

安装 shopify-development,这是一款面向AI agent workflows and automation的 AI Agent Skill。支持 Claude Code、Cursor、Windsurf,一键安装。

SKILL.md
Readonly
Upstream Repository Material
The section below is imported from the upstream repository and should be treated as secondary evidence. Use the Killer-Skills review above as the primary layer for fit, risk, and installation decisions.
Supporting Evidence

Shopify Development Skill

Use this skill when the user asks about:

  • Building Shopify apps or extensions
  • Creating checkout/admin/POS UI customizations
  • Developing themes with Liquid templating
  • Integrating with Shopify GraphQL or REST APIs
  • Implementing webhooks or billing
  • Working with metafields or Shopify Functions

ROUTING: What to Build

IF user wants to integrate external services OR build merchant tools OR charge for features: → Build an App (see references/app-development.md)

IF user wants to customize checkout OR add admin UI OR create POS actions OR implement discount rules: → Build an Extension (see references/extensions.md)

IF user wants to customize storefront design OR modify product/collection pages: → Build a Theme (see references/themes.md)

IF user needs both backend logic AND storefront UI: → Build App + Theme Extension combination


Shopify CLI Commands

Install CLI:

bash
1npm install -g @shopify/cli@latest

Create and run app:

bash
1shopify app init # Create new app 2shopify app dev # Start dev server with tunnel 3shopify app deploy # Build and upload to Shopify

Generate extension:

bash
1shopify app generate extension --type checkout_ui_extension 2shopify app generate extension --type admin_action 3shopify app generate extension --type admin_block 4shopify app generate extension --type pos_ui_extension 5shopify app generate extension --type function

Theme development:

bash
1shopify theme init # Create new theme 2shopify theme dev # Start local preview at localhost:9292 3shopify theme pull --live # Pull live theme 4shopify theme push --development # Push to dev theme

Access Scopes

Configure in shopify.app.toml:

toml
1[access_scopes] 2scopes = "read_products,write_products,read_orders,write_orders,read_customers"

Common scopes:

  • read_products, write_products - Product catalog access
  • read_orders, write_orders - Order management
  • read_customers, write_customers - Customer data
  • read_inventory, write_inventory - Stock levels
  • read_fulfillments, write_fulfillments - Order fulfillment

GraphQL Patterns (Validated against API 2026-01)

Query Products

graphql
1query GetProducts($first: Int!, $query: String) { 2 products(first: $first, query: $query) { 3 edges { 4 node { 5 id 6 title 7 handle 8 status 9 variants(first: 5) { 10 edges { 11 node { 12 id 13 price 14 inventoryQuantity 15 } 16 } 17 } 18 } 19 } 20 pageInfo { 21 hasNextPage 22 endCursor 23 } 24 } 25}

Query Orders

graphql
1query GetOrders($first: Int!) { 2 orders(first: $first) { 3 edges { 4 node { 5 id 6 name 7 createdAt 8 displayFinancialStatus 9 totalPriceSet { 10 shopMoney { 11 amount 12 currencyCode 13 } 14 } 15 } 16 } 17 } 18}

Set Metafields

graphql
1mutation SetMetafields($metafields: [MetafieldsSetInput!]!) { 2 metafieldsSet(metafields: $metafields) { 3 metafields { 4 id 5 namespace 6 key 7 value 8 } 9 userErrors { 10 field 11 message 12 } 13 } 14}

Variables example:

json
1{ 2 "metafields": [ 3 { 4 "ownerId": "gid://shopify/Product/123", 5 "namespace": "custom", 6 "key": "care_instructions", 7 "value": "Handle with care", 8 "type": "single_line_text_field" 9 } 10 ] 11}

Checkout Extension Example

tsx
1import { 2 reactExtension, 3 BlockStack, 4 TextField, 5 Checkbox, 6 useApplyAttributeChange, 7} from "@shopify/ui-extensions-react/checkout"; 8 9export default reactExtension("purchase.checkout.block.render", () => ( 10 <GiftMessage /> 11)); 12 13function GiftMessage() { 14 const [isGift, setIsGift] = useState(false); 15 const [message, setMessage] = useState(""); 16 const applyAttributeChange = useApplyAttributeChange(); 17 18 useEffect(() => { 19 if (isGift && message) { 20 applyAttributeChange({ 21 type: "updateAttribute", 22 key: "gift_message", 23 value: message, 24 }); 25 } 26 }, [isGift, message]); 27 28 return ( 29 <BlockStack spacing="loose"> 30 <Checkbox checked={isGift} onChange={setIsGift}> 31 This is a gift 32 </Checkbox> 33 {isGift && ( 34 <TextField 35 label="Gift Message" 36 value={message} 37 onChange={setMessage} 38 multiline={3} 39 /> 40 )} 41 </BlockStack> 42 ); 43}

Liquid Template Example

liquid
1{% comment %} Product Card Snippet {% endcomment %} 2<div class="product-card"> 3 <a href="{{ product.url }}"> 4 {% if product.featured_image %} 5 <img 6 src="{{ product.featured_image | img_url: 'medium' }}" 7 alt="{{ product.title | escape }}" 8 loading="lazy" 9 > 10 {% endif %} 11 <h3>{{ product.title }}</h3> 12 <p class="price">{{ product.price | money }}</p> 13 {% if product.compare_at_price > product.price %} 14 <p class="sale-badge">Sale</p> 15 {% endif %} 16 </a> 17</div>

Webhook Configuration

In shopify.app.toml:

toml
1[webhooks] 2api_version = "2026-01" 3 4[[webhooks.subscriptions]] 5topics = ["orders/create", "orders/updated"] 6uri = "/webhooks/orders" 7 8[[webhooks.subscriptions]] 9topics = ["products/update"] 10uri = "/webhooks/products" 11 12# GDPR mandatory webhooks (required for app approval) 13[webhooks.privacy_compliance] 14customer_data_request_url = "/webhooks/gdpr/data-request" 15customer_deletion_url = "/webhooks/gdpr/customer-deletion" 16shop_deletion_url = "/webhooks/gdpr/shop-deletion"

Best Practices

API Usage

  • Use GraphQL over REST for new development
  • Request only fields you need (reduces query cost)
  • Implement cursor-based pagination with pageInfo.endCursor
  • Use bulk operations for processing more than 250 items
  • Handle rate limits with exponential backoff

Security

  • Store API credentials in environment variables
  • Always verify webhook HMAC signatures before processing
  • Validate OAuth state parameter to prevent CSRF
  • Request minimal access scopes
  • Use session tokens for embedded apps

Performance

  • Cache API responses when data doesn't change frequently
  • Use lazy loading in extensions
  • Optimize images in themes using img_url filter
  • Monitor GraphQL query costs via response headers

Troubleshooting

IF you see rate limit errors: → Implement exponential backoff retry logic → Switch to bulk operations for large datasets → Monitor X-Shopify-Shop-Api-Call-Limit header

IF authentication fails: → Verify the access token is still valid → Check that all required scopes were granted → Ensure OAuth flow completed successfully

IF extension is not appearing: → Verify the extension target is correct → Check that extension is published via shopify app deploy → Confirm the app is installed on the test store

IF webhook is not receiving events: → Verify the webhook URL is publicly accessible → Check HMAC signature validation logic → Review webhook logs in Partner Dashboard

IF GraphQL query fails: → Validate query against schema (use GraphiQL explorer) → Check for deprecated fields in error message → Verify you have required access scopes


Reference Files

For detailed implementation guides, read these files:

  • references/app-development.md - OAuth authentication flow, GraphQL mutations for products/orders/billing, webhook handlers, billing API integration
  • references/extensions.md - Checkout UI components, Admin UI extensions, POS extensions, Shopify Functions for discounts/payment/delivery
  • references/themes.md - Liquid syntax reference, theme directory structure, sections and snippets, common patterns

Scripts

  • scripts/shopify_init.py - Interactive project scaffolding. Run: python scripts/shopify_init.py
  • scripts/shopify_graphql.py - GraphQL utilities with query templates, pagination, rate limiting. Import: from shopify_graphql import ShopifyGraphQL

API Version: 2026-01 (quarterly releases, 12-month deprecation window)

When to Use

This skill is applicable to execute the workflow or actions described in the overview.

相关技能

寻找 shopify-development 的替代方案 (Alternative) 或可搭配使用的同类 community Skill?探索以下相关开源技能。

查看全部

openclaw-release-maintainer

Logo of openclaw
openclaw

Your own personal AI assistant. Any OS. Any Platform. The lobster way. 🦞

333.8k
0
AI

widget-generator

Logo of f
f

为prompts.chat的信息反馈系统生成可定制的插件小部件

149.6k
0
AI

flags

Logo of vercel
vercel

React 框架

138.4k
0
浏览器

pr-review

Logo of pytorch
pytorch

Python中具有强大GPU加速的张量和动态神经网络

98.6k
0
开发者工具