/shopify-admin-agentic-readiness-audit
Score how findable, readable, and recommendable the store's catalog is to AI shopping agents — then route each gap to the agentic skill that fixes it.
$ npx -y skills add 40rty-ai/shopify-admin-skills --skill shopify-admin-agentic-readiness-audit --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
- Fires itselfAuto-invocation. Claude auto-loads it when your prompt matches the work.Auto-invocation is when the right skill fires by itself at the right moment, driven by a FLOW.md router and a hook, instead of you invoking it by name. It is the difference between a skill being installed and a skill actually getting used.Read the full definition →
- You can call itInvoke it directly when you want it.
- Slash command
/shopify-admin-agentic-readiness-audit
Context preview
The summary Claude sees to decide when to auto-load this skill.
Score how findable, readable, and recommendable the store's catalog is to AI shopping agents — then route each gap to the agentic skill that fixes it.
SKILL.md
shopify-admin-agentic-readiness-audit.SKILL.mdname: shopify-admin-agentic-readiness-audit
role: agentic
description: "Score how findable, readable, and recommendable the store's catalog is to AI shopping agents — then route each gap to the agentic skill that fixes it."
toolkit: shopify-admin, shopify-admin-execution
api_version: "2025-01"
graphql_operations:
- products:query
- files:query
- metafieldDefinitions:query
- shop:query
- themes:query
status: stable
compatibility: Claude Code, Cursor, Codex, Gemini CLI
audit_signals:
- agentic-listing-schema
- catalog-intent-alignment
- product-schema-jsonld
- gtin-sku-pdp
- listing-image-alt-text
- listing-description-quality
- listing-metafields
- robots-ai-rules
- org-schema
Purpose
Runs a store-side "Agentic Commerce Readiness" scan — the same questions the public **agentiq.report** audit asks, but answered from inside the Shopify Admin with full catalog data. It scores whether AI shopping agents (ChatGPT, Gemini, Perplexity, agentic checkout) can FIND, READ, and RECOMMEND the store's products, then prints a prioritized gap list where **every gap names the sibling `agentic` skill that fixes it**. Read-only — it changes nothing. Use it first (and on a schedule) to decide which remediation skills to run.
Prerequisites
- Authenticated Shopify CLI session (`shopify auth login --store <domain>`)
- Required API scopes: `read_products`, `read_files`, `read_content` (themes), `read_online_store_pages`
Parameters
All skills accept these universal parameters:
| Parameter | Type | Required | Default | Description | |-----------|--------|----------|---------|-------------| | store | string | yes | — | Store domain (e.g., mystore.myshopify.com) | | format | string | no | human | Output format: `human` (default) or `json` | | dry_run | bool | no | false | No-op here — this skill never mutates |
Skill-specific parameters:
| Parameter | Type | Required | Default | Description | |-----------|------|----------|---------|-------------| | sample_size | int | no | 250 | How many products to sample for the catalog-data checks | | min_description_chars | int | no | 120 | Threshold below which a description counts as "thin" |
Workflow Steps
1. **OPERATION:** `shop` — query **Inputs:** none **Expected output:** Shop name, primary domain, social `sameAs` links, and policy presence — feeds the identity + policy checks.
2. **OPERATION:** `themes` — query **Inputs:** `roles: [MAIN]`, then `theme.files(filenames: ["templates/robots.txt.liquid", "layout/theme.liquid", "assets/llms.txt", "templates/llms.txt.liquid"])` **Expected output:** Whether the published theme allows AI crawlers (robots), ships an Organization JSON-LD block, and serves an llms.txt — feeds discovery + identity checks.
3. **OPERATION:** `metafieldDefinitions` — query **Inputs:** `ownerType: PRODUCT` **Expected output:** Which structured attributes are defined (material, specs, features) — feeds the metafield-coverage check.
4. **OPERATION:** `products` — query (paginate to `sample_size`) **Inputs:** `first: 250`, fields: `descriptionHtml`, `category`, `media`, `metafields`, `variants{ barcode, sku, price }` **Expected output:** Per-product completeness — description length, image alt-text coverage, barcode/GTIN presence, category assigned, metafield population.
5. **OPERATION:** `files` — query **Inputs:** `first: 50`, `query: "media_type:IMAGE"` (sample) — corroborate alt-text coverage at the file level. **Expected output:** Alt-text fill rate across product media.
6. **COMPUTE (no API):** roll the findings into a 0–100 readiness score across five pillars — **Discoverable** (robots/llms.txt), **Trusted** (Organization schema, sameAs, policies), **Readable** (descriptions, alt text, JSON-LD fields), **Structured** (metafields, category, barcodes), **Matchable** (title/tag/metafield richness for intent) — and map each failing pillar to its fix skill.
GraphQL Operations
# shop:query — validated against api_version 2025-01
query AgenticReadinessShop {
shop {
name
myshopifyDomain
primaryDomain { url }
contactEmail
shopPolicies { type body url }
}
}# themes:query — validated against api_version 2025-01
query AgenticReadinessTheme {
themes(first: 1, roles: [MAIN]) {
nodes {
id
name
files(filenames: [
"templates/robots.txt.liquid",
"layout/theme.liquid",
"assets/llms.txt",
"templates/llms.txt.liquid"
]) {
nodes {
filename
body {
... on OnlineStoreThemeFileBodyText { content }
}
}
}
}
}
}# metafieldDefinitions:query — validated against api_version 2025-01
query AgenticReadinessMetafieldDefs {
metafieldDefinitions(first: 100, ownerType: PRODUCT) {
edges { node { namespace key name type { name } } }
}
}# products:query — validated against api_version 2025-01
query AgenticReadinessProducts($first: Int!, $after: String) {
products(first: $first, after: $after) {
edges {
node {
id
title
descriptionHtml
category { id fullName }
tags
media(first: 10) {
edges { node { ... on MediaImage { id image { altText url } } } }
}
metafields(first: 20) { edges { node { namespace key value } } }
variants(first: 100) {
edges { node { id sku barcode price } }
}
}
}
pageInfo { hasNextPage endCursor }
}
}# files:query — validated against api_version 2025-01
query AgenticReadinessFiles($first: Int!, $after: String) {
files(first: $first, after: $after, query: "media_type:IMAGE") {
edges { node { ... on MediaImage { id alt } } }
pageInfo { hasNextPage endCursor }
}
}Session Tracking
**Claude MUST emit the following output at each stage. This is mandatory.**
**
Read more
name: shopify-admin-agentic-readiness-audit role: agentic description: "Score how findable, readable, and recommendable the store's catalog is to AI shopping agents — then route each gap to the agentic skill that fixes it." toolkit: shopify-admin, shopify-admin-execution api_version: "2025-01" graphql_operations: - products:query - files:query - metafieldDefinitions:query - shop:query - themes:query status: stable compatibility: Claude Code, Cursor, Codex, Gemini CLI audit_signals: - agentic-listing-schema - catalog-intent-alignment - product-schema-jsonld - gtin-sku-pdp - listing-image-alt-text - listing-description-quality - listing-metafields - robots-ai-rules - org-schema
Purpose
Runs a store-side "Agentic Commerce Readiness" scan — the same questions the public **agentiq.report** audit asks, but answered from inside the Shopify Admin with full catalog data. It scores whether AI shopping agents (ChatGPT, Gemini, Perplexity, agentic checkout) can FIND, READ, and RECOMMEND the store's products, then prints a prioritized gap list where **every gap names the sibling `agentic` skill that fixes it**. Read-only — it changes nothing. Use it first (and on a schedule) to decide which remediation skills to run.
Prerequisites
- Authenticated Shopify CLI session (`shopify auth login --store <domain>`)
- Required API scopes: `read_products`, `read_files`, `read_content` (themes), `read_online_store_pages`
Parameters
All skills accept these universal parameters:
| Parameter | Type | Required | Default | Description | |-----------|--------|----------|---------|-------------| | store | string | yes | — | Store domain (e.g., mystore.myshopify.com) | | format | string | no | human | Output format: `human` (default) or `json` | | dry_run | bool | no | false | No-op here — this skill never mutates |
Skill-specific parameters:
| Parameter | Type | Required | Default | Description | |-----------|------|----------|---------|-------------| | sample_size | int | no | 250 | How many products to sample for the catalog-data checks | | min_description_chars | int | no | 120 | Threshold below which a description counts as "thin" |
Workflow Steps
1. **OPERATION:** `shop` — query **Inputs:** none **Expected output:** Shop name, primary domain, social `sameAs` links, and policy presence — feeds the identity + policy checks.
2. **OPERATION:** `themes` — query **Inputs:** `roles: [MAIN]`, then `theme.files(filenames: ["templates/robots.txt.liquid", "layout/theme.liquid", "assets/llms.txt", "templates/llms.txt.liquid"])` **Expected output:** Whether the published theme allows AI crawlers (robots), ships an Organization JSON-LD block, and serves an llms.txt — feeds discovery + identity checks.
3. **OPERATION:** `metafieldDefinitions` — query **Inputs:** `ownerType: PRODUCT` **Expected output:** Which structured attributes are defined (material, specs, features) — feeds the metafield-coverage check.
4. **OPERATION:** `products` — query (paginate to `sample_size`) **Inputs:** `first: 250`, fields: `descriptionHtml`, `category`, `media`, `metafields`, `variants{ barcode, sku, price }` **Expected output:** Per-product completeness — description length, image alt-text coverage, barcode/GTIN presence, category assigned, metafield population.
5. **OPERATION:** `files` — query **Inputs:** `first: 50`, `query: "media_type:IMAGE"` (sample) — corroborate alt-text coverage at the file level. **Expected output:** Alt-text fill rate across product media.
6. **COMPUTE (no API):** roll the findings into a 0–100 readiness score across five pillars — **Discoverable** (robots/llms.txt), **Trusted** (Organization schema, sameAs, policies), **Readable** (descriptions, alt text, JSON-LD fields), **Structured** (metafields, category, barcodes), **Matchable** (title/tag/metafield richness for intent) — and map each failing pillar to its fix skill.
GraphQL Operations
# shop:query — validated against api_version 2025-01
query AgenticReadinessShop {
shop {
name
myshopifyDomain
primaryDomain { url }
contactEmail
shopPolicies { type body url }
}
}# themes:query — validated against api_version 2025-01
query AgenticReadinessTheme {
themes(first: 1, roles: [MAIN]) {
nodes {
id
name
files(filenames: [
"templates/robots.txt.liquid",
"layout/theme.liquid",
"assets/llms.txt",
"templates/llms.txt.liquid"
]) {
nodes {
filename
body {
... on OnlineStoreThemeFileBodyText { content }
}
}
}
}
}
}# metafieldDefinitions:query — validated against api_version 2025-01
query AgenticReadinessMetafieldDefs {
metafieldDefinitions(first: 100, ownerType: PRODUCT) {
edges { node { namespace key name type { name } } }
}
}# products:query — validated against api_version 2025-01
query AgenticReadinessProducts($first: Int!, $after: String) {
products(first: $first, after: $after) {
edges {
node {
id
title
descriptionHtml
category { id fullName }
tags
media(first: 10) {
edges { node { ... on MediaImage { id image { altText url } } } }
}
metafields(first: 20) { edges { node { namespace key value } } }
variants(first: 100) {
edges { node { id sku barcode price } }
}
}
}
pageInfo { hasNextPage endCursor }
}
}# files:query — validated against api_version 2025-01
query AgenticReadinessFiles($first: Int!, $after: String) {
files(first: $first, after: $after, query: "media_type:IMAGE") {
edges { node { ... on MediaImage { id alt } } }
pageInfo { hasNextPage endCursor }
}
}Session Tracking
**Claude MUST emit the following output at each stage. This is mandatory.**
**
Community-maintained AI agent skills for operating Shopify stores — workflows, optimization, reports and more
Other skills on shopify-admin-skills.
- /shopify-admin-agentic-crawler-access
Edit the theme's robots.txt.liquid to explicitly allow AI crawlers (GPTBot, ClaudeBot, PerplexityBot, Google-Extended, OAI-SearchBot, Amazonbot) so AI assistants are permitted to read the catalog.
Open skill - /shopify-admin-agentic-description-enrichment
Rewrite thin product descriptions into structured, fact-rich copy (materials, fit, use-cases, the words shoppers actually type) so AI agents have something concrete to quote and match.
Open skill - /shopify-admin-agentic-image-alt-text
Generate and set descriptive alt text on product images so AI agents (which can't 'see' pixels) can understand and recommend what each product looks like.
Open skill - /shopify-admin-agentic-llms-txt
Generate and publish an /llms.txt guide (brand summary, flagship products, key policies, contact) via a theme template so AI assistants get a curated, machine-readable map of the store.
Open skill - /shopify-admin-agentic-metafields-setup
Define and populate agentic-commerce metafields (material, attributes, key features, specs, sizing) so AI agents can filter and match products to specific shopper requirements.
Open skill - /shopify-admin-agentic-organization-schema
Inject an Organization JSON-LD block (name, logo, sameAs social links, contactPoint) into the theme so AI agents can verify the store is a real, trusted brand and link it to its public identity.
Open skill

