shopify-theme-development

shopify-theme-development is a skill for Claude Code, Codex from finsilabs/awesome-ecommerce-skills. It costs 28 tokens per session (3,914 once invoked), scanned A, original, MIT.

A guide to building Shopify themes with Liquid templates, JSON sections, and configurable blocks. Liquid is Shopify’s template language, and sections and blocks let merchants change page layouts in the theme editor.

In plain words
What is it for?
Use it to create or customize product pages, collection pages, carts, theme-editor sections, and theme app extensions, including speed improvements.
Why use it?
It makes store layouts and features customizable while keeping the work within Shopify’s theme system.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one. Also seen: mentions Codex; mentions Gemini CLI; mentions OpenCode.

Good fit Use it to create or customize product pages, collection pages, carts, theme-editor sections, and theme app extensions, including speed improvements.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/finsilabs/awesome-ecommerce-skills/shopify-theme-development
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add finsilabs/awesome-ecommerce-skills --skill shopify-theme-development
Clone the repo
git clone --depth 1 https://github.com/finsilabs/awesome-ecommerce-skills

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for shopify-theme-development

README.md
[![agentmods](https://agentmods.dev/badge/skills/finsilabs/awesome-ecommerce-skills/shopify-theme-development/github.svg)](https://agentmods.dev/skills/finsilabs/awesome-ecommerce-skills/shopify-theme-development)
Your own site
<a href="https://agentmods.dev/skills/finsilabs/awesome-ecommerce-skills/shopify-theme-development"><img src="https://agentmods.dev/badge/skills/finsilabs/awesome-ecommerce-skills/shopify-theme-development/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for shopify-theme-development

Your own site · 80×15
<a href="https://agentmods.dev/skills/finsilabs/awesome-ecommerce-skills/shopify-theme-development"><img src="https://agentmods.dev/badge/skills/finsilabs/awesome-ecommerce-skills/shopify-theme-development.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 28 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 3,914 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00028 $0.03914
Opus 5 $0.00014 $0.01957
Sonnet 5 $0.00006 $0.00783
Haiku 4.5 $0.00003 $0.00391

Measured 6d ago against content hash 85fe998c4367, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-10, from the pricing page.

Security

Grade A, and why

shopify-theme-development scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 6d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skills/platform-shopify/shopify-theme-development/SKILL.md · 527 lines

How it starts

The opening of the file, as written. The whole thing — 527 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Shopify Theme Development

Overview

Build and customize Shopify themes using Liquid templating, JSON templates, sections and blocks for merchant-customizable layouts, and theme app extensions for app integrations. This skill covers the Shopify theme architecture (Online Store 2.0), the Shopify CLI development workflow, performance optimization with lazy loading and critical CSS, and patterns for building flexible sections that merchants can configure through the theme editor.

When to Use This Skill

  • When building a new Shopify theme from scratch or forking Dawn
  • When creating custom sections and blocks for the theme editor
  • When implementing product pages, collection grids, or cart functionality in Liquid
  • When optimizing a Shopify theme for Core Web Vitals and speed
  • When building theme app extensions to inject app content into themes

Core Instructions

  1. Set up the development environment with Shopify CLI

    # Install Shopify CLI
    npm install -g @shopify/cli @shopify/theme
    
    # Initialize a new theme (or clone Dawn)
    shopify theme init my-theme
    
    # Start development server with hot reload
    shopify theme dev --store=your-store.myshopify.com
    

    Theme directory structure (Online Store 2.0):

    my-theme/
    ├── assets/          # CSS, JS, images
    ├── config/          # settings_schema.json, settings_data.json
    ├── layout/          # theme.liquid (main layout)
    ├── locales/         # Translation files
    ├── sections/        # Sections (reusable, merchant-configurable)
    ├── snippets/        # Partials (reusable Liquid fragments)
    └── templates/       # JSON templates referencing sections
        ├── product.json
        ├── collection.json
        └── index.json
    
  2. Create a JSON template with sections

    // templates/product.json
    {
      "sections": {
        "main": {
          "type": "main-product",
          "settings": {}
        },
        "recommendations": {
          "type": "product-recommendations",
          "settings": {
            "heading": "You may also like",
            "products_to_show": 4
          }
        },
        "reviews": {
          "type": "product-reviews",
          "settings": {}
        }
      },
      "order": ["main", "recommendations", "reviews"]
    }
    

Read the full file on GitHub · 527 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 6d ago First seen · 527 lines · 28 tokens per session scan A 85fe998c4367

Subscribe to this mod's changes

shopify-theme-development is a skill published in the GitHub repository finsilabs/awesome-ecommerce-skills (52 stars, last pushed 6mo ago), licensed MIT. It adds 28 tokens to every session and 3,914 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-03.