🎯

shopify

🎯Skill

from vibery-studio/templates

VibeIndex|
What it does

Develops Shopify applications, extensions, and themes using GraphQL/REST APIs, Shopify CLI, Polaris UI, and Liquid, enabling comprehensive customization of e-commerce experiences.

πŸ“¦

Part of

vibery-studio/templates(40 items)

shopify

Installation

npm installInstall npm package
npm install -g @shopify/cli@latest
PythonRun Python server
python scripts/shopify_init.py
πŸ“– Extracted from docs: vibery-studio/templates
2Installs
-
AddedFeb 4, 2026

Skill Details

SKILL.md

Build Shopify applications, extensions, and themes using GraphQL/REST APIs, Shopify CLI, Polaris UI components, and Liquid templating. Capabilities include app development with OAuth authentication, checkout UI extensions for customizing checkout flow, admin UI extensions for dashboard integration, POS extensions for retail, theme development with Liquid, webhook management, billing API integration, product/order/customer management. Use when building Shopify apps, implementing checkout customizations, creating admin interfaces, developing themes, integrating payment processing, managing store data via APIs, or extending Shopify functionality.

Overview

# Shopify Development

Comprehensive guide for building on Shopify platform: apps, extensions, themes, and API integrations.

Platform Overview

Core Components:

  • Shopify CLI - Development workflow tool
  • GraphQL Admin API - Primary API for data operations (recommended)
  • REST Admin API - Legacy API (maintenance mode)
  • Polaris UI - Design system for consistent interfaces
  • Liquid - Template language for themes

Extension Points:

  • Checkout UI - Customize checkout experience
  • Admin UI - Extend admin dashboard
  • POS UI - Point of Sale customization
  • Customer Account - Post-purchase pages
  • Theme App Extensions - Embedded theme functionality

Quick Start

Prerequisites

```bash

# Install Shopify CLI

npm install -g @shopify/cli@latest

# Verify installation

shopify version

```

Create New App

```bash

# Initialize app

shopify app init

# Start development server

shopify app dev

# Generate extension

shopify app generate extension --type checkout_ui_extension

# Deploy

shopify app deploy

```

Theme Development

```bash

# Initialize theme

shopify theme init

# Start local preview

shopify theme dev

# Pull from store

shopify theme pull --live

# Push to store

shopify theme push --development

```

Development Workflow

1. App Development

Setup:

```bash

shopify app init

cd my-app

```

Configure Access Scopes (shopify.app.toml):

```toml

[access_scopes]

scopes = "read_products,write_products,read_orders"

```

Start Development:

```bash

shopify app dev # Starts local server with tunnel

```

Add Extensions:

```bash

shopify app generate extension --type checkout_ui_extension

```

Deploy:

```bash

shopify app deploy # Builds and uploads to Shopify

```

2. Extension Development

Available Types:

  • Checkout UI - checkout_ui_extension
  • Admin Action - admin_action
  • Admin Block - admin_block
  • POS UI - pos_ui_extension
  • Function - function (discounts, payment, delivery, validation)

Workflow:

```bash

shopify app generate extension

# Select type, configure

shopify app dev # Test locally

shopify app deploy # Publish

```

3. Theme Development

Setup:

```bash

shopify theme init

# Choose Dawn (reference theme) or start fresh

```

Local Development:

```bash

shopify theme dev

# Preview at localhost:9292

# Auto-syncs to development theme

```

Deployment:

```bash

shopify theme push --development # Push to dev theme

shopify theme publish --theme=123 # Set as live

```

When to Build What

Build an App When:

  • Integrating external services
  • Adding functionality across multiple stores
  • Building merchant-facing admin tools
  • Managing store data programmatically
  • Implementing complex business logic
  • Charging for functionality

Build an Extension When:

  • Customizing checkout flow
  • Adding fields/features to admin pages
  • Creating POS actions for retail
  • Implementing discount/payment/shipping rules
  • Extending customer account pages

Build a Theme When:

  • Creating custom storefront design
  • Building unique shopping experiences
  • Customizing product/collection pages
  • Implementing brand-specific layouts
  • Modifying homepage/content pages

Combination Approach:

App + Theme Extension:

  • App handles backend logic and data
  • Theme extension provides storefront UI
  • Example: Product reviews, wishlists, size guides

Essential Patterns

GraphQL Product Query

```graphql

query GetProducts($first: Int!) {

products(first: $first) {

edges {

node {

id

title

handle

variants(first: 5) {

edges {

node {

id

price

inventoryQuantity

}

}

}

}

}

pageInfo {

hasNextPage

endCursor

}

}

}

```

Checkout Extension (React)

```javascript

import {

reactExtension,

BlockStack,

TextField,

Checkbox,

} from "@shopify/ui-extensions-react/checkout";

export default reactExtension("purchase.checkout.block.render", () => (

));

function Extension() {

const [message, setMessage] = useState("");

return (

);

}

```

Liquid Product Display

```liquid

{% for product in collection.products %}

{{ product.title }}

{{ product.title }}

{{ product.price | money }}

View Details

{% endfor %}

```

Best Practices

API Usage:

  • Prefer GraphQL over REST for new development
  • Request only needed fields to reduce costs
  • Implement pagination for large datasets
  • Use bulk operations for batch processing
  • Respect rate limits (cost-based for GraphQL)

Security:

  • Store API credentials in environment variables
  • Verify webhook signatures
  • Use OAuth for public apps
  • Request minimal access scopes
  • Implement session tokens for embedded apps

Performance:

  • Cache API responses when appropriate
  • Optimize images in themes
  • Minimize Liquid logic complexity
  • Use async loading for extensions
  • Monitor query costs in GraphQL

Testing:

  • Use development stores for testing
  • Test across different store plans
  • Verify mobile responsiveness
  • Check accessibility (keyboard, screen readers)
  • Validate GDPR compliance

Reference Documentation

Detailed guides for advanced topics:

  • [App Development](references/app-development.md) - OAuth, APIs, webhooks, billing
  • [Extensions](references/extensions.md) - Checkout, Admin, POS, Functions
  • [Themes](references/themes.md) - Liquid, sections, deployment

Scripts

[shopify_init.py](scripts/shopify_init.py) - Initialize Shopify projects interactively

```bash

python scripts/shopify_init.py

```

Troubleshooting

Rate Limit Errors:

  • Monitor X-Shopify-Shop-Api-Call-Limit header
  • Implement exponential backoff
  • Use bulk operations for large datasets

Authentication Failures:

  • Verify access token validity
  • Check required scopes granted
  • Ensure OAuth flow completed

Extension Not Appearing:

  • Verify extension target correct
  • Check extension published
  • Ensure app installed on store

Webhook Not Receiving:

  • Verify webhook URL accessible
  • Check signature validation
  • Review logs in Partner Dashboard

Resources

Official Documentation:

  • Shopify Docs: https://shopify.dev/docs
  • GraphQL API: https://shopify.dev/docs/api/admin-graphql
  • Shopify CLI: https://shopify.dev/docs/api/shopify-cli
  • Polaris: https://polaris.shopify.com

Tools:

  • GraphiQL Explorer (Admin β†’ Settings β†’ Apps β†’ Develop apps)
  • Partner Dashboard (app management)
  • Development stores (free testing)

API Versioning:

  • Quarterly releases (YYYY-MM format)
  • Current: 2025-01
  • 12-month support per version
  • Test before version updates

---

Note: This skill covers Shopify platform as of January 2025. Refer to official documentation for latest updates.

More from this repository10

🎯
frontend-design🎯Skill

Crafts distinctive, production-grade frontend interfaces with creative design, avoiding generic AI aesthetics across websites, components, and web applications.

🎯
spec-writer🎯Skill

spec-writer skill from vibery-studio/templates

🎯
ui-styling🎯Skill

Crafts beautiful, accessible user interfaces using shadcn/ui components, Tailwind CSS utility styling, and canvas-based visual design systems.

🎯
devops🎯Skill

Deploys and manages cloud infrastructure across Cloudflare, Docker, and Google Cloud Platform with comprehensive edge computing solutions.

🎯
skill-creator🎯Skill

Guides users through creating effective skills that extend Claude's capabilities with specialized knowledge, workflows, and tool integrations.

🎯
code-review🎯Skill

Enforces rigorous code review practices by systematically evaluating feedback, requesting reviews, and requiring evidence before claiming task completion.

🎯
frontend-dev-guidelines🎯Skill

Provides comprehensive, opinionated frontend development best practices and coding standards for React and modern web development workflows.

🎯
mermaidjs-v11🎯Skill

Generates text-based diagrams and visualizations across 24+ diagram types using Mermaid.js v11 declarative syntax for technical documentation and project planning.

🎯
udemy-crawler🎯Skill

udemy-crawler skill from vibery-studio/templates

🎯
theme-factory🎯Skill

Generates professional, context-specific visual themes for slides, docs, and other artifacts with 10 pre-set design palettes.