shopify-matrixify

shopify-matrixify is a skill for Claude Code from kgelster/awesome-ecom-skills. It costs 163 tokens per session (2,380 once invoked), scanned A, original, MIT.

A guide to using Matrixify, a Shopify app that imports and exports store data as CSV or Excel spreadsheets. It covers bulk catalog changes and migrations.

In plain words
What is it for?
Use it to export Shopify data, edit products or other records in a spreadsheet, import changes, preview the result, and check what was changed.
Why use it?
It helps avoid changing thousands of products incorrectly, especially when blank cells or missing rows may overwrite or remove data.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin.

Part of the ecom plugin — 10 skills shipped together

Good fit Use it to export Shopify data, edit products or other records in a spreadsheet, import changes, preview the result, and check what was changed.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/kgelster/awesome-ecom-skills/shopify-matrixify
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add kgelster/awesome-ecom-skills --skill shopify-matrixify
Clone the repo
git clone --depth 1 https://github.com/kgelster/awesome-ecom-skills

Made for: Claude Code.

Or install ecom, the plugin that ships this one along with the rest of its 10 skills.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for shopify-matrixify

README.md
[![agentmods](https://agentmods.dev/badge/skills/kgelster/awesome-ecom-skills/shopify-matrixify/github.svg)](https://agentmods.dev/skills/kgelster/awesome-ecom-skills/shopify-matrixify)
Your own site
<a href="https://agentmods.dev/skills/kgelster/awesome-ecom-skills/shopify-matrixify"><img src="https://agentmods.dev/badge/skills/kgelster/awesome-ecom-skills/shopify-matrixify/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for shopify-matrixify

Your own site · 80×15
<a href="https://agentmods.dev/skills/kgelster/awesome-ecom-skills/shopify-matrixify"><img src="https://agentmods.dev/badge/skills/kgelster/awesome-ecom-skills/shopify-matrixify.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 163 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,380 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00163 $0.02380
Opus 5 $0.00081 $0.01190
Sonnet 5 $0.00033 $0.00476
Haiku 4.5 $0.00016 $0.00238

Measured 11d ago against content hash 05f05f09fed7, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-11, from the pricing page.

Security

Grade A, and why

shopify-matrixify scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 11d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skills/shopify-matrixify/SKILL.md · 204 lines

How it starts

The opening of the file, as written. The whole thing — 204 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Shopify Matrixify

The bulk-data workhorse of the catalog-cleanup suite. Matrixify moves store data in and out as spreadsheets, so it is how you touch thousands of records at once instead of one at a time in the admin. Almost every destructive mistake here comes from one of two misunderstandings: what a blank cell means, and what omitting a row means. Internalize the safety doctrine below before you touch a production catalog.

Canonical docs: matrixify.app/documentation. This skill is the operational playbook the docs don't spell out.

Store access

Matrixify runs inside the store, not through the Admin API. You do the work in two places:

  • The Matrixify app (Shopify admin → Apps → Matrixify): run Export to pull a sheet, run Import to push one. Every import shows an Analyze preview and, after it runs, an Import Results file.
  • A spreadsheet you edit locally (Excel or any CSV editor) or generate with throwaway code.

No token lives in this skill. To verify a write landed, re-export the affected records and inspect the cells, or read them back through the Admin API: the storefront is CDN-cached and lies about freshness.

Safety doctrine

Read this section twice. Every rule here was learned by someone breaking a live store.

  1. Back up first: the export IS the backup. Before any bulk write, run a full export of the entity you're about to touch (Products, Collections, etc.) and save the file. If the import goes wrong, that export is your restore path. There is no "undo import" button.
  2. MERGE is the default and it is safe. An empty Command cell defaults to MERGE (except Orders/Draft Orders, which default to NEW). MERGE updates rows that exist, creates rows that don't, and leaves untouched anything you didn't put in the file. Stay on MERGE unless you have a specific reason not to.
  3. A blank cell in an import DELETES that value: it does not skip it. This is the single most expensive trap in Matrixify. If your sheet has a Metafield: custom.care [multi_line_text_field] column and a product's cell is empty, the import writes empty, wiping the existing metafield. Same for any field: blank Body HTML clears the description, blank Vendor errors out. Only include columns you intend to change. The fix is column omission, not blank cells. Absent column = untouched; present-but-blank column = deleted.
  4. REPLACE is destructive by definition. REPLACE deletes the existing record (or nested set: variants, images, tags) and recreates it from only what's in the file. Anything not in the file is gone. Reach for REPLACE only when you truly want the file to be the complete new truth, and back up first.
  5. Omitting a row does NOT revert a prior import. Dropping a handle from your next file doesn't undo what a previous import did to it. Matrixify only acts on rows present in the current file; it has no memory of the last run. To reverse a change you must import a new file that explicitly sets the old values back.
  6. Sub-command MERGE ≠ entity MERGE. Setting the entity Command to MERGE does not by itself govern tags, images, or variants. Those have their own command columns (Tags Command, Image Command, Variant Command), each of which defaults to MERGE when absent (per the matrixify.app docs). MERGE is the safe default, but state it anyway: always pair a Tags column with an explicit Tags Command so the intent (add vs. REPLACE the exact list vs. DELETE listed) is unambiguous on the sheet rather than relying on the default.

Read the full file on GitHub · 204 lines

Files

What ships with it

1 file beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 11d ago First seen · 204 lines · 163 tokens per session scan A 05f05f09fed7

Subscribe to this mod's changes

shopify-matrixify is a skill published in the GitHub repository kgelster/awesome-ecom-skills (46 stars, last pushed 19d ago), licensed MIT. It adds 163 tokens to every session and 2,380 once invoked, about $0.0008 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

paid-ads-amazon

Plan and review Amazon Ads with margin-aware ACoS, product, and search-term guardrails. Use for Amazon advertising, Sponsored Products, Sponsored Brands, Sponsored Display, ASIN targeting, Amazon ACoS, or Amazon Ads performance exports.

nowork-studio/notfair-plugin · 55 tokens

beat-sync-reel

Generates Instagram Reels where product image cuts are synced to audio beats. Accepts audio as a local file, URL, or search query. Uses librosa for beat detection, FFmpeg Ken Burns for scene animation, and Pillow for text overlays. No AI video generation — fully free, fast, and scalable.

gooseworks-ai/goose-skills · 68 tokens

ebay-search

Search eBay listings - find items, auctions, deals, and compare prices.

gooseworks-ai/goose-skills · 19 tokens

einbeziehung-online-clickwrap-browsewrap

Für Einbeziehung Online Clickwrap Browsewrap: ordnet Norm, Beweislast und Gegenargument; Ergebnis: Prüfprodukt mit Risiko und nächstem Schritt.

Klotzkette/claude-fuer-deutsches-recht · 42 tokens

kurzfristige-preiserhoehung-lieferfrist

Für Kurzfristige Preiserhöhung 309: prüft Frist, Form, Zuständigkeit und Eilbedarf; Ergebnis: Fristen- und Risikoampel. Fachgebiet: AGB-Recht-Prüfer. Route: kurzfristige-preiserhoehung-lieferfrist.

Klotzkette/claude-fuer-deutsches-recht · 72 tokens

plattform-online-gate-rollout-rangfolge

Für Plattform und Online Checkout: ordnet Norm, Beweislast und Gegenargument; Ergebnis: Prüfprodukt mit Risiko und nächstem Schritt. Fachgebiet: AGB-Recht-Prüfer. Route: plattform-online-gate-rollout-rangfolge.

Klotzkette/claude-fuer-deutsches-recht · 62 tokens