惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

U
Unit 42
Vercel News
Vercel News
博客园 - 叶小钗
大猫的无限游戏
大猫的无限游戏
MyScale Blog
MyScale Blog
P
Proofpoint News Feed
量子位
Engineering at Meta
Engineering at Meta
B
Blog RSS Feed
博客园 - 【当耐特】
Recent Announcements
Recent Announcements
Google DeepMind News
Google DeepMind News
D
DataBreaches.Net
Stack Overflow Blog
Stack Overflow Blog
博客园 - 聂微东
小众软件
小众软件
Hugging Face - Blog
Hugging Face - Blog
人人都是产品经理
人人都是产品经理
IT之家
IT之家
T
The Blog of Author Tim Ferriss
Last Week in AI
Last Week in AI
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
Jina AI
Jina AI
博客园 - 三生石上(FineUI控件)

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
Stop Guessing Why Your Shopify Product CSV Import Failed
q00tar00 · 2026-06-28 · via DEV Community

q00tar00

You exported a product CSV, edited it in Excel or Google Sheets, and uploaded it to Shopify.
Shopify shows a generic error — or worse, it silently imports the wrong thing: a handle gets
overwritten, a variant attaches to the wrong product, half your rows go missing. You find out
days later from a customer.

Shopify CSV Preflight Validator checks the file before you upload it. It runs locally on your
machine, never touches your store, needs no API key, and returns three things:

  • fixed_products.csv — a safe copy with the unambiguous, mechanical mistakes already corrected.
  • errors.csv — a machine-readable list of every finding (row, rule, severity, suggested fix).
  • report.md — a human-readable report you can read in 30 seconds.

No login. No upload of your catalog to a third party. Just a file in, a verdict out.

Why CSV imports fail (and why the error message doesn't help)

Shopify's product CSV import is a two-stage process: it validates the file, then applies rows.
A file can pass the upload dialog and still misbehave on apply. The most common ways merchants get
burned:

  1. A spreadsheet adds a UTF-8 BOM to the first cell. The first header (Title) becomes invisible-garbage + Title, so Shopify can't find the title column.
  2. Header case / legacy names drift. title instead of Title, Handle instead of URL handle. Some get ignored, some get rejected.
  3. A variant row loses its parent handle. Shopify can't tell which product the variant belongs to.
  4. Two product rows share one handle. Shopify silently keeps one and overwrites/merges the other.
  5. Image alt text with no image URL, negative prices, compare-at prices below the real price — small data bugs that ship to your live storefront.

These are not exotic. They're what happens every time a human edits a CSV in a spreadsheet.

What the tool actually does — a real run

Here is a messy export with several of the problems above. Running:

csv-preflight check messy-product-import-sample.csv --out-dir ./out --lang en

produces this report.md (verbatim):

# Shopify CSV Preflight Report

- Summary: scanned rows 4 / product groups 3 / 6 critical / 8 warning / 2 auto-fixed (proven) / 1 suggested

## Critical (fix before import)
- [F01a] file: UTF-8 BOM detected at file start.
- [F03a] file: Header 'title' differs only by case from a known column.
- [R02] row 2: Variant/image row is missing the parent URL handle.
- [R03] row 1: 2 product-start rows share handle 'aurora-hoodie' (rows 1, 3).
- [R03] row 3: 2 product-start rows share handle 'aurora-hoodie' (rows 1, 3).
- [R11] row 4: Image alt text present but image URL is empty.

## Warning (review recommended)
- [R07] row 4: inventory_policy 'maybe' is not a documented value (deny/continue).
- [R08] row 4: Inventory tracker 'shopify' set but inventory quantity is empty/non-numeric.
- [R10] row 1: Compare-at price 3900.0 <= price 4800.0.
- [R10] row 4: Price '-1800' is negative.
- ... (fulfillment-service defaults, etc.)

## Auto-fixed (proven)
- [F01a] file: UTF-8 BOM detected at file start.
- [F03a] file: Header 'title' differs only by case from a known column.

## Not checked
- Not checked by this tool: image URL public reachability, handle overwrite/ignore
  against an existing store, metafield product reference resolution, and option position
  consistency with existing products.

The exit code is non-zero when criticals are present, so you can wire it into a script and stop
a bad upload automatically.

What got fixed automatically

Two classes of mistake are unambiguous and safe to fix mechanically, so the tool writes them into
fixed_products.csv for you:

  • BOM removed from the file start.
  • Header case normalized (titleTitle).

Everything else — missing handles, duplicate handles, negative prices — is a judgment call, so the
tool reports it but never silently rewrites your data. You stay in control of your catalog.

Honest about its limits

The report always prints a Not checked section. The tool reads a file; it does not connect to
your store. It cannot know whether an image URL is publicly reachable, whether a handle will
overwrite an existing product, or whether a metafield reference resolves. It says so, every time.
We would rather under-promise than tell you "import guaranteed" and be wrong.

Who this is for

  • Solo merchants doing a bulk product update before a launch or sale.
  • Agencies / freelancers migrating a client's catalog and wanting a clean handoff.
  • Anyone who has been burned once by a silent partial import and never wants to guess again.

It is product CSV only. It deliberately refuses files that look like order or customer exports
(it detects buyer-PII column names and stops) — your customers' data never goes through it.

How it compares

The existing tools (Matrixify, Ablestar) are powerful full migration suites. Merchants who don't
need all of that consistently say the same three things: expensive, slow, and hard to learn.

This tool is the opposite end: one command, one purpose — catch the import-breaking mistakes before
you upload
— with no account and no upload of your catalog.

Full migration apps CSV Preflight Validator
Setup Install app, connect store Run one command locally
Touches your store Yes (Admin API) No — file in, file out
Your catalog leaves your machine Often Never
Job Migrate everything Stop a bad import

Try it

It's on GitHub — read the source, grab a release, run it on your own file:

https://github.com/q00tar00/shopify-csv-preflight

uv tool install csv-preflight
csv-preflight check your-products.csv --out-dir ./out

If a silent partial import has ever bitten you, I'd love to hear what broke — drop a comment or open
an issue. I'm validating whether this is worth turning into a paid one-shot / Shopify app, and real
merchant pain is exactly what I'm looking for.