AgentStack
SKILL verified MIT Self-run

Agentic Commerce Catalog Audit

skill-commerce-agentic-agentic-commerce-skills-agentic-commerce-catalog-audit · by commerce-agentic

Full Shopify catalog audit against the Agentic Commerce Spec v1.0. Returns per-product 0-100 score across 8 dimensions plus ranked top issues by impact.

No reviews yet
0 installs
11 views
0.0% view→install

Install

$ agentstack add skill-commerce-agentic-agentic-commerce-skills-agentic-commerce-catalog-audit

✓ scanned · ✓ verified — works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

Are you the author of Agentic Commerce Catalog Audit? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

Purpose

Audits every product in a Shopify store against the Agentic Commerce Spec v1.0 — an open scoring standard for AI shopping agent visibility. Returns a 0-100 score per product, a per-dimension breakdown (title, description, images, metadata, taxonomy, variants, reviews, structured data), and a ranked list of issues by predicted impact on AI agent recommendation probability.

Use this skill when you want to know which of your products will get skipped by ChatGPT, Gemini, Claude, Mistral, and DeepSeek when they generate shopping recommendations, and which fixes would lift visibility fastest.

Prerequisites

  • Authenticated Shopify CLI session: shopify auth login --store
  • API scopes: read_products, read_product_listings

Parameters

| Parameter | Type | Required | Default | Description | |-----------|------|----------|---------|-------------| | store | string | yes | — | Store domain (e.g., mystore.myshopify.com) | | format | string | no | human | Output format: human or json | | limit | integer | no | 250 | Max products to audit in this run (paginated) | | minscore | integer | no | 0 | Only return products scoring below this threshold | | topissues | integer | no | 10 | How many top issues to surface in the summary |

Workflow Steps

  1. OPERATION: products — query

Inputs: first: 50 per page, pagination via cursor until limit reached or no more products Expected output: Product nodes with title, descriptionHtml, productType, vendor, tags, images, media, variants, metafields, seo

  1. For each product, compute the Agentic Commerce Spec v1.0 score using the reference scorer in @commerce-agentic/spec. The scorer is deterministic, runs locally, no network calls. Output per product:

``json { "productId": "gid://shopify/Product/12345", "title": "...", "totalScore": 67, "grade": "C", "dimensions": { "title": 14, "description": 9, "images": 7, "metadata": 10, "taxonomy": 6, "variants": 8, "reviews": 5, "structured_data": 8 }, "issues": ["Missing google_product_category metafield", "Alt text on 1/6 images"], "aiVisibilityIndex": 0.62 } ``

  1. Aggregate across the catalog:
  • Compute store-wide average score
  • Bucket products: AI-Ready (>=80), Needs Work (50-79), Invisible ( Read-only operation. No mutations. Safe to run anytime, including on a production store.

GraphQL Operations

# products:query — validated against api_version 2025-01
query CatalogAudit($first: Int!, $after: String) {
  products(first: $first, after: $after) {
    edges {
      node {
        id
        title
        descriptionHtml
        productType
        vendor
        tags
        seo {
          title
          description
        }
        images(first: 10) {
          edges {
            node {
              altText
              url
            }
          }
        }
        variants(first: 50) {
          edges {
            node {
              sku
              barcode
              price
              inventoryQuantity
            }
          }
        }
        metafields(first: 25) {
          edges {
            node {
              namespace
              key
              value
            }
          }
        }
      }
    }
    pageInfo {
      hasNextPage
      endCursor
    }
  }
}

Reference

This skill implements the audit phase of the Agentic Commerce Spec v1.0. The scoring methodology is fully documented at METHODOLOGY.md. Cross-implementation test vectors are at test/vectors.json.

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet — be the first.

Versions

  • v0.1.0 Imported from the upstream source.