Now liveThe Skillselion MCP - thousands of ranked skills, loaded into your agent mid-task. No install.Get it →
40rty-ai avatar

Shopify Admin Price Elasticity Analyzer

  • 2 installs
  • 173 repo stars
  • Updated June 26, 2026
  • 40rty-ai/shopify-admin-skills

shopify-admin-price-elasticity-analyzer is a Claude Code skill that analyzes the relationship between product pricing and sales velocity to identify optimal price points and price-sensitive products.

About

This skill analyzes price-to-velocity relationships across a Shopify catalog to identify which products are price-sensitive and where optimal price points might exist. It groups products by type, vendor, or collection, compares sale items against full-price items, and flags products where small price changes could shift volume. It is read-only and produces an elasticity analysis.

  • Analyzes price-to-sales-velocity relationships across the product catalog
  • Groups by product type, vendor, or collection and compares sale vs full-price velocity
  • Read-only; flags price-sensitive products and candidate test price points

Shopify Admin Price Elasticity Analyzer by the numbers

  • 2 all-time installs (skills.sh)
  • Ranked #1,839 of 2,715 Automation & Workflows skills by installs in the Skillselion catalog
  • Data as of Aug 1, 2026 (Skillselion catalog sync)
At a glance

shopify-admin-price-elasticity-analyzer capabilities & compatibility

Free skill; requires an authenticated Shopify store session with read_orders and read_products scopes.

Capabilities
price elasticity analysis · sales velocity analysis · pricing analysis
Works with
github
Use cases
data analysis
Runs
Runs locally
Pricing
Bring your own API key
Requires keys
SHOPIFYSTOREADMINAUTHVIASHOPIFYCLI
From the docs

What shopify-admin-price-elasticity-analyzer says it does

Analyzes price-to-velocity relationships across the product catalog to identify which products are price-sensitive and where optimal price points might exist.
SKILL.md
Flag products where small price changes could significantly change volume
SKILL.md
npx skills add https://github.com/40rty-ai/shopify-admin-skills --skill shopify-admin-price-elasticity-analyzer

Add your badge

Show developers this skill is listed on Skillselion. Paste this into your README.

Listed on Skillselion
Installs2
repo stars173
Last updatedJune 26, 2026
Repository40rty-ai/shopify-admin-skills

What it does

Analyze Shopify price-to-velocity data to find price-sensitive products and candidate price points.

Who is it for?

Merchandisers testing pricing strategy who want data on which products are price-sensitive.

Skip if: Changing prices; it is read-only and only produces analysis.

When should I use this skill?

You want to understand how pricing affects sales velocity across your Shopify catalog before a price test.

What you get

An analysis ranks products by price sensitivity and suggests candidate price points to test.

  • Price elasticity analysis identifying price-sensitive product groups and candidate test price points

By the numbers

  • 3 GraphQL operations (products, orders, productVariants queries)
  • default 90-day sales lookback

Files

SKILL.mdMarkdownGitHub ↗

Purpose

Analyzes price-to-velocity relationships across the product catalog to identify which products are price-sensitive and where optimal price points might exist. Compares products within the same category/vendor at different price tiers, and examines how products with compare-at prices (on sale) perform vs. full-price items. Read-only — no mutations.

Prerequisites

  • Authenticated Shopify CLI session: shopify store auth --store <domain> --scopes read_orders,read_products
  • API scopes: read_orders, read_products

Parameters

ParameterTypeRequiredDefaultDescription
storestringyesStore domain
days_backintegerno90Sales lookback window
group_bystringnoproduct_typeGroup comparison: product_type, vendor, or collection
formatstringnohumanOutput format: human or json

Safety

ℹ️ Read-only skill — no mutations are executed. Safe to run at any time.

Workflow Steps

1. OPERATION: products — query Inputs: first: 250, status: ACTIVE, select id, title, productType, vendor, variants { price, compareAtPrice, inventoryQuantity }, pagination cursor Expected output: All active products with pricing data

2. OPERATION: orders — query Inputs: query: "created_at:>='<NOW - days_back days>'", first: 250, select lineItems { variant { id, price }, quantity }, pagination cursor Expected output: Sales data per variant for velocity calculation

3. For each product/variant, calculate:

  • Units sold per day (velocity)
  • Revenue per day
  • Current price point
  • Has compare-at price? (on sale indicator)
  • Sale discount % = (compareAtPrice - price) / compareAtPrice × 100

4. Within each group (product_type or vendor):

  • Sort by price ascending
  • Calculate velocity at each price tier
  • Identify price-velocity correlation (negative = price-sensitive, flat = price-insensitive)
  • Compare sale items velocity vs. full-price velocity
  • Flag products where small price changes could significantly change volume

5. OPERATION: productVariants — query (enrichment for variants with compare-at prices) Inputs: Variant IDs where compareAtPrice is set Expected output: Historical pricing context

GraphQL Operations

# products:query — validated against api_version 2025-01
query ActiveProductsWithPricing($after: String) {
  products(first: 250, after: $after, query: "status:active") {
    edges {
      node {
        id
        title
        productType
        vendor
        variants(first: 100) {
          edges {
            node {
              id
              price
              compareAtPrice
              sku
              inventoryQuantity
            }
          }
        }
      }
    }
    pageInfo { hasNextPage endCursor }
  }
}
# orders:query — validated against api_version 2025-01
query SalesVelocityData($query: String!, $after: String) {
  orders(first: 250, after: $after, query: $query) {
    edges {
      node {
        createdAt
        lineItems(first: 50) {
          edges {
            node {
              variant { id price }
              quantity
            }
          }
        }
      }
    }
    pageInfo { hasNextPage endCursor }
  }
}
# productVariants:query — validated against api_version 2025-01
query VariantsOnSale($query: String, $after: String) {
  productVariants(first: 250, after: $after, query: $query) {
    edges {
      node {
        id
        price
        compareAtPrice
        product { id title productType vendor }
      }
    }
    pageInfo { hasNextPage endCursor }
  }
}

Session Tracking

Claude MUST emit the following output at each stage. This is mandatory.

On start, emit:

╔══════════════════════════════════════════════╗
║  SKILL: Price Elasticity Analyzer            ║
║  Store: <store domain>                       ║
║  Started: <YYYY-MM-DD HH:MM UTC>             ║
╚══════════════════════════════════════════════╝

After each step, emit:

[N/TOTAL] <QUERY|MUTATION>  <OperationName>
          → Params: <brief summary of key inputs>
          → Result: <count or outcome>

On completion, emit:

For format: human (default):

══════════════════════════════════════════════
PRICE ELASTICITY ANALYSIS  (<days_back> days)
  Products analyzed:        <n>
  Product groups compared:  <n>
  ─────────────────────────────
  PRICE-SENSITIVE (high elasticity):
    "<product type>" — velocity drops <pct>% per $10 price increase
    Top candidate: "<product>" at $<price> — consider testing $<lower>

  PRICE-INSENSITIVE (low elasticity):
    "<product type>" — velocity stable across price range $<low>-$<high>
    Top candidate: "<product>" at $<price> — room to increase

  SALE EFFECTIVENESS:
    Products on sale: <n>  Avg discount: <pct>%
    Sale velocity lift: +<pct>% vs. full-price peers

  Output: price_elasticity_<date>.csv
══════════════════════════════════════════════

Output Format

CSV file price_elasticity_<YYYY-MM-DD>.csv with columns: product_id, product_title, product_type, vendor, current_price, compare_at_price, daily_velocity, revenue_per_day, group_avg_velocity, price_rank_in_group, elasticity_indicator, recommendation

Error Handling

ErrorCauseRecovery
THROTTLEDAPI rate limit exceededWait 2 seconds, retry up to 3 times
Small groupsOnly 1-2 products in a typeSkip group — insufficient data for comparison
No salesProduct has zero sales in windowInclude at velocity=0 for comparison

Best Practices

  • Best results require at least 5+ products per group for meaningful comparison.
  • Price-insensitive products are candidates for price increases — test with bulk-price-adjustment.
  • Price-sensitive products may benefit from promotional pricing — test with discount-ab-analysis.
  • Products on sale with minimal velocity lift are wasting margin — remove compare-at price.
  • Run quarterly to track how price sensitivity changes with seasons.

Related skills

FAQ

How are products grouped for comparison?

The group_by parameter compares within product_type (default), vendor, or collection.

What is the default sales window?

days_back defaults to a 90-day sales lookback window.

Automation & Workflowsecommercepricing

This week in AI coding

Five minutes, every Monday - the tools, releases and tactics for developers.

unsubscribe anytime.