shopify-core-workflow-a

Featured

Manage Shopify products, variants, and collections using the GraphQL Admin API. Use when creating, updating, or querying products, managing inventory, or building product catalog integrations. Trigger with phrases like "shopify products", "create shopify product", "shopify variants", "shopify collections", "shopify inventory".

AI & Automation 2,266 stars 315 forks Updated today MIT

Install

View on GitHub

Quality Score: 99/100

Stars 20%
100
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
50
License 10%
100
Description 5%
100

Skill Content

# Shopify Products & Catalog Management ## Overview Primary workflow for Shopify: manage products, variants, collections, and inventory using the GraphQL Admin API. Covers CRUD operations with real API mutations and response shapes. ## Prerequisites - Completed `shopify-install-auth` setup - Access scopes: `read_products`, `write_products`, `read_inventory`, `write_inventory` - API version 2024-10 or later (ProductInput was split in this version) ## Instructions ### Step 1: Create a Product ```typescript // As of 2024-10, productCreate uses ProductCreateInput (not the old ProductInput) const CREATE_PRODUCT = ` mutation productCreate($input: ProductCreateInput!) { productCreate(product: $input) { product { id title handle status variants(first: 10) { edges { node { id title price sku inventoryQuantity } } } } userErrors { field message code } } } `; const response = await client.request(CREATE_PRODUCT, { variables: { input: { title: "Premium Cotton T-Shirt", descriptionHtml: "<p>Soft 100% organic cotton tee.</p>", vendor: "My Brand", productType: "Apparel", tags: ["cotton", "organic", "summer"], status: "DRAFT", // ACTIVE, DRAFT, or ARCHIVED productOptions: [ { name: "Size", v...

Details

Author
jeremylongshore
Repository
jeremylongshore/claude-code-plugins-plus-skills
Created
7 months ago
Last Updated
today
Language
Python
License
MIT

Integrates with

Similar Skills

Semantically similar based on skill content — not just same category

AI & Automation Solid

shopify-products

Create and manage Shopify products via the Admin API. Workflow: gather product data, choose method (API or CSV), execute, verify. Use when adding products, bulk importing, updating variants, managing inventory, uploading product images, or assigning products to collections.

809 Updated 2 weeks ago
jezweb
AI & Automation Featured

shopify-core-workflow-b

Manage Shopify orders, customers, and fulfillments using the GraphQL Admin API. Use when querying orders, processing fulfillments, managing customers, or building order management integrations. Trigger with phrases like "shopify orders", "shopify customers", "shopify fulfillment", "process shopify order", "shopify checkout".

2,266 Updated today
jeremylongshore
AI & Automation Solid

shopify-content

Create and manage Shopify pages, blog posts, navigation, and SEO metadata. Workflow: determine content type, generate content, create via API or browser, verify. Use when creating pages, writing blog posts, updating navigation menus, managing redirects, or updating SEO metadata on a Shopify store.

809 Updated 2 weeks ago
jezweb
AI & Automation Featured

shopify-migration-deep-dive

Migrate e-commerce data to Shopify using bulk operations, product imports, and the strangler fig pattern for gradual platform migration. Trigger with phrases like "migrate to shopify", "shopify data migration", "import products shopify", "shopify replatform", "move to shopify".

2,266 Updated today
jeremylongshore
AI & Automation Featured

shopify-hello-world

Create a minimal working Shopify app that queries products via GraphQL Admin API. Use when starting a new Shopify integration, testing your setup, or learning basic Shopify API patterns. Trigger with phrases like "shopify hello world", "shopify example", "shopify quick start", "simple shopify app", "first shopify API call".

2,266 Updated today
jeremylongshore