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

Shopify Admin File Storage Audit

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

shopify-admin-file-storage-audit is a Shopify Admin skill that lists CDN files and flags ones not referenced by any product, page, or article.

About

A Shopify Admin skill that inventories every file in the store's CDN library and cross-references each against products, pages, and blog articles to determine whether it is actually used. Files not referenced anywhere are flagged as orphans, with a minimum-age filter to skip in-flight uploads. It is read-only and deletes nothing, producing the data foundation for a manual cleanup. Operators run it to reclaim storage and de-clutter asset search.

  • Cross-references CDN files against products, pages, and articles
  • Flags orphaned/unreferenced assets older than a threshold
  • Read-only report only; deletes nothing

Shopify Admin File Storage Audit 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-file-storage-audit capabilities & compatibility

Free; requires an authenticated Shopify CLI session with read_files, read_products, and read_content scopes.

Capabilities
asset audit · orphan detection · storage cleanup
Use cases
data analysis
Pricing
Free
From the docs

What shopify-admin-file-storage-audit says it does

Inventories every file (image, video, generic file) in the store's CDN library and cross-references each one against products, pages, and blog articles to determine whether it is actually used.
SKILL.md
No files are deleted by this skill; it produces a report only.
SKILL.md
npx skills add https://github.com/40rty-ai/shopify-admin-skills --skill shopify-admin-file-storage-audit

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

Inventory all Shopify CDN files and cross-reference them against products, pages, and articles to flag orphaned, unreferenced assets.

Who is it for?

Finding orphaned CDN assets in a Shopify store to plan a storage cleanup.

Skip if: Deleting or archiving files; it only produces a report.

When should I use this skill?

When back-office asset search is cluttered or storage usage needs review.

What you get

A report of every file with its usage status and a list of orphaned assets.

  • Full file inventory with sizes
  • List of orphaned assets

By the numbers

  • Cross-references 4 sources (files, products, pages, articles)
  • Default 30-day minimum-age filter

Files

SKILL.mdMarkdownGitHub ↗

Purpose

Inventories every file (image, video, generic file) in the store's CDN library and cross-references each one against products, pages, and blog articles to determine whether it is actually used. Orphaned files inflate storage usage, slow back-office search, and obscure brand assets. Read-only — no mutations. Provides the data foundation for a manual cleanup or archival workflow.

Prerequisites

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

Parameters

ParameterTypeRequiredDefaultDescription
storestringyesStore domain (e.g., mystore.myshopify.com)
min_age_daysintegerno30Only flag files older than this (avoid newly uploaded assets in flight)
file_typesstringnoallFilter: IMAGE, VIDEO, GENERIC_FILE, or all
sample_orphansintegerno25Number of orphaned files to print in the human-format completion banner
formatstringnohumanOutput format: human or json

Safety

ℹ️ Read-only skill — no mutations are executed. Safe to run at any time. No files are deleted by this skill; it produces a report only.

Workflow Steps

1. OPERATION: files — query Inputs: first: 250, select id, alt, createdAt, fileStatus, __typename, plus typename-specific URL/size fields, pagination cursor Expected output: Full file inventory with CDN URLs and byte sizes; paginate until hasNextPage: false

2. OPERATION: products — query Inputs: first: 250, select media { ... on MediaImage { image { url } id }, ... on Video { sources { url } } }, pagination cursor Expected output: Set of file IDs / URLs referenced by any product

3. OPERATION: pages — query Inputs: first: 250, select body (HTML body for inline <img src=...> reference scanning) Expected output: Page bodies; extract cdn.shopify.com/... URLs

4. OPERATION: articles — query Inputs: first: 250, select body and image { url } Expected output: Article bodies and hero images; extract referenced file URLs

5. Cross-reference: any file in step 1 whose id or canonical URL is not found in the union of step 2, 3, 4 references → orphan.

6. Apply min_age_days filter — exclude files created within the last N days from the "orphan" list to avoid flagging staging/in-flight uploads.

GraphQL Operations

# files:query — validated against api_version 2025-01
query FileInventory($after: String, $query: String) {
  files(first: 250, after: $after, query: $query) {
    edges {
      node {
        id
        alt
        createdAt
        fileStatus
        __typename
        ... on MediaImage {
          image { url width height }
          originalSource { fileSize }
        }
        ... on Video {
          sources { url mimeType fileSize }
        }
        ... on GenericFile {
          url
          mimeType
          originalFileSize
        }
      }
    }
    pageInfo { hasNextPage endCursor }
  }
}
# products:query — validated against api_version 2025-01
query ProductMediaReferences($after: String) {
  products(first: 250, after: $after) {
    edges {
      node {
        id
        media(first: 50) {
          edges {
            node {
              ... on MediaImage { id image { url } }
              ... on Video { id sources { url } }
            }
          }
        }
      }
    }
    pageInfo { hasNextPage endCursor }
  }
}
# pages:query — validated against api_version 2025-01
query PageBodyReferences($after: String) {
  pages(first: 250, after: $after) {
    edges { node { id title body } }
    pageInfo { hasNextPage endCursor }
  }
}

# articles:query — validated against api_version 2025-01
query ArticleBodyReferences($after: String) {
  articles(first: 250, after: $after) {
    edges { node { id title body image { url } } }
    pageInfo { hasNextPage endCursor }
  }
}

Session Tracking

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

On start, emit:

╔══════════════════════════════════════════════╗
║  SKILL: File Storage Audit                   ║
║  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):

══════════════════════════════════════════════
FILE STORAGE AUDIT
  Total files:        <n>   ( <total_size_mb> MB )
    Images:           <n>
    Videos:           <n>
    Generic files:    <n>
  Referenced files:   <n>   ( <ref_size_mb> MB )
  Orphaned files:     <n>   ( <orphan_size_mb> MB ,  <pct>%)

  Sample orphans:
    "<filename>"  <size>  uploaded: <YYYY-MM-DD>
  Output: file_audit_<date>.csv
══════════════════════════════════════════════

For format: json, emit:

{
  "skill": "file-storage-audit",
  "store": "<domain>",
  "total_files": 0,
  "total_size_bytes": 0,
  "referenced_files": 0,
  "orphaned_files": 0,
  "orphaned_size_bytes": 0,
  "orphan_pct": 0,
  "output_file": "file_audit_<date>.csv"
}

Output Format

CSV file file_audit_<YYYY-MM-DD>.csv with columns: file_id, file_type, url, alt, size_bytes, created_at, age_days, is_referenced, referenced_by_count, referenced_by_sample

Error Handling

ErrorCauseRecovery
THROTTLEDAPI rate limit exceededWait 2 seconds, retry up to 3 times
ACCESS_DENIED on filesMissing read_files scopeRe-auth with read_files added
File without size fieldCDN metadata still propagatingTreat size_bytes = null; include in report with note
Body URL parsing missPage/article uses theme asset path, not CDN URLMark as referenced_by: theme, exclude from orphan list

Best Practices

  • Run before any large media re-upload (e.g., catalog refresh) to baseline current storage.
  • Use min_age_days: 30 to avoid flagging in-flight uploads not yet wired to a product or page.
  • Sort the CSV by size_bytes descending — a few large videos often dominate storage cost.
  • Do NOT bulk-delete from the report directly. Spot-check 10 random orphans first; theme and email-template references are not always discoverable via the Admin API.
  • Keep the prior month's CSV and diff against the new run to track net storage growth.

Related skills

FAQ

Will it delete orphaned files?

No. It is read-only and deletes nothing; it produces a report to drive a manual cleanup.

How does it avoid flagging new uploads?

The min_age_days parameter (default 30) excludes recently created files from the orphan list.

This week in AI coding

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

unsubscribe anytime.