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

Shopify Admin Traffic By Page Report

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

shopify-admin-traffic-by-page-report is a Claude Code skill that reports sessions and conversion rate per Shopify product and collection page using ShopifyQL.

About

A Claude Code skill that queries Shopify's ShopifyQL analytics engine for session and conversion-rate data per product and collection page. It filters landing pages in-memory and flags high-traffic, low-conversion pages. Merchants use its output for SEO prioritisation, merchandising focus, and A/B test targeting.

  • Reports sessions and conversion rate per product and collection page via ShopifyQL
  • Flags high-traffic low-conversion pages for A/B and merchandising focus
  • Read-only; documents ShopifyQL filtering constraints and available metrics

Shopify Admin Traffic By Page Report by the numbers

  • 3 all-time installs (skills.sh)
  • Ranked #1,624 of 1,879 Marketing & SEO skills by installs in the Skillselion catalog
  • Data as of Aug 1, 2026 (Skillselion catalog sync)
At a glance

shopify-admin-traffic-by-page-report capabilities & compatibility

Free; requires an authenticated Shopify CLI session with read_reports and ShopifyQL access.

Capabilities
traffic report · conversion analysis · seo prioritization
Use cases
seo · data analysis
Runs
Runs locally
Pricing
Free
From the docs

What shopify-admin-traffic-by-page-report says it does

ready input for SEO prioritisation, merchandising focus, and A/B test targeting
SKILL.md
flag pages with sessions above median and `conversion_rate < 0.02` as `high_traffic_low_conversion`
SKILL.md
npx skills add https://github.com/40rty-ai/shopify-admin-skills --skill shopify-admin-traffic-by-page-report

Add your badge

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

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

What it does

Surface which Shopify product and collection pages earn traffic and which convert it.

Who is it for?

Merchants prioritising SEO and CRO work by page-level traffic and conversion.

Skip if: Bounce-rate analysis, which ShopifyQL does not support for this data source.

When should I use this skill?

You need to know which store pages get traffic and how well they convert.

What you get

A ranked per-page report of sessions and conversion rate with a traffic CSV.

  • traffic_by_page_<date>.csv
  • Ranked per-page traffic report

By the numbers

  • 1 ShopifyQL query operation
  • default 30-day lookback
  • default top_n 25 pages

Files

SKILL.mdMarkdownGitHub ↗

Purpose

Queries Shopify's built-in analytics engine (ShopifyQL) to surface session-level traffic data scoped to product and collection pages. Shows which pages are attracting the most traffic, how many sessions convert to orders, and where visitors are bouncing — ready input for SEO prioritisation, merchandising focus, and A/B test targeting. Read-only — no mutations are executed.

Prerequisites

  • Authenticated Shopify CLI session: shopify auth login --store <domain>
  • API scopes: read_reports
  • Shopify plan: ShopifyQL analytics is available on Basic and above; availability of sessions as a data source requires Shopify plan or higher

Parameters

ParameterTypeRequiredDefaultDescription
storestringyesStore domain (e.g., mystore.myshopify.com)
formatstringnohumanOutput format: human or json
dry_runboolnofalsePreview operations without executing mutations
days_backintegerno30Lookback window in days (e.g., 30 = last 30 days)
page_typestringnobothFilter to: products, collections, or both
top_nintegerno25Number of pages to show in the ranked output
sort_bystringnosessionsRanking metric: sessions, conversion_rate, or bounce_rate

Workflow Steps

1. OPERATION: shopifyqlQuery — query (all landing pages) Inputs: ShopifyQL string FROM sessions SHOW sessions, conversion_rate GROUP BY landing_page_path SINCE -<days_back>d UNTIL today ORDER BY sessions DESC LIMIT 250; sessions and conversion_rate are the confirmed available metrics for this data source Expected output: All landing pages with session counts and conversion rates; paginate via OFFSET if result count equals 250

2. In-memory filtering: Filter rows where landing_page_path starts with /products/ (product pages) or /collections/ (collection pages); apply page_type parameter; sort by sort_by; truncate to top_n; flag pages with sessions above median and conversion_rate < 0.02 as high_traffic_low_conversion

Note: ShopifyQL does not support LIKE, WHERE string prefix filters, or aggregate aliases that shadow reserved column names (sessions, conversion_rate). All page-type filtering must be done in-memory after fetching all rows.

GraphQL Operations

# shopifyqlQuery:query (page traffic) — validated against api_version 2025-01
query TrafficByPage($query: String!) {
  shopifyqlQuery(query: $query) {
    parseErrors
    tableData {
      columns {
        name
        dataType
        displayName
      }
      rows
    }
  }
}

The $query variable (single call — all landing pages, filtered in-memory):

FROM sessions
SHOW sessions, conversion_rate
GROUP BY landing_page_path
SINCE -<days_back>d
UNTIL today
ORDER BY sessions DESC
LIMIT 250

Then filter rows in-memory:

  • Product pages: landing_page_path.startsWith('/products/')
  • Collection pages: landing_page_path.startsWith('/collections/')
  • conversion_rate is returned as a decimal (e.g. 0.016 = 1.6%) — multiply by 100 for display
Confirmed live against 2025-01: sessions (INTEGER) and conversion_rate (PERCENT) are the available metrics. WHERE … LIKE, bounce_rate, converted_sessions, and aggregate aliases that shadow reserved names are not supported in ShopifyQL FROM sessions.

Session Tracking

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

On start, emit:

╔══════════════════════════════════════════════╗
║  SKILL: traffic-by-page-report               ║
║  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):

══════════════════════════════════════════════
OUTCOME SUMMARY
  Lookback window:      <days_back> days
  Page type:            <products|collections|both>
  Pages analysed:       <n>
  Top session page:     <path> (<n> sessions)
  Top converting page:  <path> (<pct>%)
  Errors:               0
  Output:               traffic_by_page_<date>.csv
══════════════════════════════════════════════

For format: json, emit:

{
  "skill": "traffic-by-page-report",
  "store": "<domain>",
  "started_at": "<ISO8601>",
  "completed_at": "<ISO8601>",
  "dry_run": false,
  "steps": [
    { "step": 1, "operation": "ProductPageTraffic", "type": "query", "params_summary": "products, last <days_back> days", "result_summary": "<n> product pages returned", "skipped": false },
    { "step": 2, "operation": "ProductPageTraffic", "type": "query", "params_summary": "collections, last <days_back> days", "result_summary": "<n> collection pages returned", "skipped": false }
  ],
  "outcome": {
    "days_back": 30,
    "page_type": "both",
    "pages_analysed": 0,
    "results": [],
    "errors": 0,
    "output_file": "traffic_by_page_<date>.csv"
  }
}

Output Format

CSV file traffic_by_page_<YYYY-MM-DD>.csv with one row per page:

ColumnDescription
page_typeproduct or collection
page_pathURL path (e.g., /products/red-sneaker)
sessionsTotal sessions landing on this page
conversion_rate_pctConversion rate as a percentage (API returns decimal; multiplied by 100)
optimisation_flaghigh_traffic_low_conversion if sessions > median and conversion_rate < 2%

For format: human, a ranked table is printed inline truncated to top_n, followed by a short list of optimisation candidates flagged with high_traffic_low_conversion.

Error Handling

ErrorCauseRecovery
parseErrors non-emptyInvalid ShopifyQL syntax — each error is a plain stringLog each string, surface to user; common causes: aliasing a reserved column name (sessions, conversion_rate), using LIKE, or referencing a non-existent column like converted_sessions or bounce_rate
tableData is nullNo analytics data for the periodExtend days_back; confirm the store has traffic
ACCESS_DENIED / read_reports scope missingScope not granted at auth timeRe-authenticate adding read_reports scope
THROTTLEDAnalytics query rate limitWait 2 s, retry up to 3 times
No product/collection rows after filteringDev/test store or no direct landing traffic to catalog pagesWiden days_back; note that most traffic may enter via homepage

Best Practices

1. A conversion_rate_pct below 1% on a high-traffic product page is worth investigating — check whether the product is out of stock, has poor images, or lacks a clear call-to-action. 2. Collection pages with high bounce rates often signal a poor match between the ad or search term that drove the session and the collection content — review the collection SEO title. 3. Use page_type: products after a new product launch to track early traction without noise from collection traffic. 4. Combine with top-product-performance to correlate high-converting pages with the products generating the most actual revenue. 5. Re-run the report weekly after making on-page changes (copy, imagery, pricing) to measure the impact — the 7-day window (days_back: 7) isolates post-change behaviour cleanly.

Related skills

FAQ

Does it report bounce rate?

No. ShopifyQL does not support bounce_rate for the sessions data source.

Which metrics are available?

sessions and conversion_rate are confirmed against api_version 2025-01.

Marketing & SEOseocontent

This week in AI coding

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

unsubscribe anytime.