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

推荐订阅源

人人都是产品经理
人人都是产品经理
有赞技术团队
有赞技术团队
WordPress大学
WordPress大学
月光博客
月光博客
T
Tailwind CSS Blog
阮一峰的网络日志
阮一峰的网络日志
小众软件
小众软件
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
Last Week in AI
Last Week in AI
大猫的无限游戏
大猫的无限游戏
S
SegmentFault 最新的问题
罗磊的独立博客
Jina AI
Jina AI
酷 壳 – CoolShell
酷 壳 – CoolShell
宝玉的分享
宝玉的分享
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
博客园 - 三生石上(FineUI控件)
量子位
雷峰网
雷峰网
Apple Machine Learning Research
Apple Machine Learning Research
美团技术团队
博客园 - 聂微东
V
V2EX

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
I Used Claude to Generate 37 Amazon JP Product Listings i...
mamoru kubok · 2026-05-16 · via DEV Community

I run e-commerce across Amazon JP, Rakuten, Yahoo, Qoo10, and TikTok Shop Japan. The single biggest bottleneck has always been listings — not products, not logistics, not ads. Writing decent product copy for each SKU, in Japanese, at scale, kills momentum.

Last month I rewired the entire workflow using Claude. This post is the actual playbook, including the prompt I use, where Claude gets Japan wrong, and what the numbers look like.


TL;DR

  • Old way: 30–60 minutes per SKU for a usable listing
  • New way: ~5 minutes per SKU after a light human edit pass
  • Result: roughly [X] SKUs processed in a single day
  • The trick is not "ask Claude to write a listing." It's structured inputs + Japan-specific guardrails + a category-level batch pattern.

Why bulk Amazon JP listings are uniquely painful

Anyone who has sold on amazon.co.jp knows the problem isn't translation. It's that Japanese product copy has its own conventions:

  • Honorifics shift depending on whether you're describing a gift, a daily-use item, or a luxury product.
  • Seasonal vocabulary matters more than in English markets (春限定, 季節の変わり目, etc.).
  • Bullet points read very differently — Japanese shoppers expect spec-dense bullets, not the benefit-first style that wins on amazon.com.
  • Brand-safe phrasing is narrower. A casual "perfect for everyone" reads cheap in Japanese.

If you machine-translate an English listing, you get something that technically makes sense and emotionally feels off. Conversion drops. You don't see it in keyword tools — you see it in CVR three weeks later.


The new workflow (5 steps)

Step 1: Build a structured input form

Before Claude touches anything, every SKU needs to be reduced to clean inputs. I use a Google Sheet with one row per SKU and these columns:

  • Product name (JP and EN if available)
  • Category and subcategory
  • 3–5 key features (bullet-list style)
  • Target keywords (from Cerebro or Helium 10)
  • 1–2 competitor ASINs to mirror in tone
  • Tone hint: gift / daily / luxury / utility

This is the single highest-leverage step. Garbage in, garbage out is a cliché because it's true. Claude can't recover from a vague spec.

Step 2: Master prompt with Japan-specific guardrails

Here's the prompt structure I land on after about 20 iterations. Adjust the tone block based on the SKU category.

You are writing an Amazon Japan product listing in natural Japanese.

CONTEXT:
- Product: {product_name}
- Category: {category}
- Tone: {tone_hint}  // gift / daily / luxury / utility
- Key features: {features}
- Target keywords: {keywords}
- Competitor reference (for tone only, do not copy): {asin}

WRITE:
1. Title (max 200 chars, keyword-front-loaded, Amazon JP conventions)
2. 5 bullet points (spec-dense, not benefit-first)
3. Product description (300-400 chars, neutral-formal tone)
4. 5 backend search terms (no duplicates with title)

JAPAN-SPECIFIC RULES:
- Do NOT use overly polite honorifics (です・ます is fine; avoid いただきます constructions)
- Do NOT translate brand promises literally ("perfect for everyone" → cut)
- Use full-width punctuation (。、)
- Bullets should lead with spec, not adjective
- Avoid katakana-English when a native Japanese word exists, EXCEPT for established
  category terms (e.g. "ステンレス" is fine, "クオリティ" usually isn't)

OUTPUT FORMAT:
Plain text. No markdown. No commentary. Just the four sections labeled
TITLE / BULLETS / DESCRIPTION / SEARCH TERMS.

Enter fullscreen mode Exit fullscreen mode

The guardrail block is the part that took the longest to develop, and it's where most teams get this wrong. Without it, Claude produces grammatically perfect Japanese that screams foreign-operated brand to native shoppers.

Step 3: Batch by category, not by SKU

This is counterintuitive. The instinct is to process SKU by SKU, finishing one before starting the next. Don't.

Instead, group all SKUs in the same category and process them in one Claude conversation. Reasons:

  • Context carries. After 3 listings in the same category, Claude has internalized the tonal conventions and the rest go faster and more consistently.
  • You catch your own input inconsistencies. By the 5th SKU, you notice that your tone hint "daily" produced very different outputs across SKUs — usually because your inputs varied, not Claude's outputs.
  • Cheaper. Fewer system prompt reloads.

Step 4: Human edit pass focused on Japan-specific failure modes

I don't edit for grammar. Claude's Japanese grammar is essentially flawless. I edit for these three things:

  1. Honorific creep. Claude sometimes drifts into 〜していただけます forms that feel salesy in a listing context.
  2. Generic adjectives. 高品質, 便利, 安心 — these are placeholder words. I replace each with a concrete spec.
  3. Keyword stuffing artifacts. When the keyword list is long, Claude occasionally repeats a keyword three times in the title. One pass to clean.

This pass takes me about 3–5 minutes per SKU. Compared to writing from scratch, it's a 6–10x speedup.

Step 5: Upload, then iterate based on CVR

Don't try to perfect the listing pre-upload. The data on Amazon JP is the only feedback that matters. I rerun the prompt on underperformers after 30 days using the actual session search terms from the report, fed back into the keyword field.


What Claude Gets Wrong (and Why It's a Feature, Not a Bug)

A few specific failure modes you should expect:

  • Over-formal closings. Listings shouldn't end with 「ぜひお試しください」 — sounds like an ad. Strip it.
  • Mixing 漢字 and ひらがな inconsistently for the same word across a listing. Quick find-and-replace fixes it.
  • Inventing technical specs. If your input is vague, Claude will fill the gap with plausible-sounding nonsense. Always sanity-check numbers, materials, dimensions.

The reason these aren't dealbreakers: they're all catchable in a fast review pass. The hard part — natural Japanese prose at scale — Claude handles. You're left to do the work that requires judgment, not typing.


Why this matters more for Japan than for US/EU

US and EU markets have a deep pool of bilingual copywriters. Japan does not. The supply of professionals who can write good product copy in Japanese — not just correct Japanese — is a real constraint for international sellers.

Tools like Claude meaningfully close that gap, if you guardrail them properly. Without guardrails you get Google Translate with extra steps. With them, you get something that competes with mid-tier human output at 10x speed.

This is the entire premise behind a project I'm building called TOKI Digital Services — productizing this workflow for sellers who want to enter the Japan market without hiring a full-time Japanese copywriter. More on that in a future post.


What I'd Do Differently Next Time

  • Build the input sheet template first. I wasted two days iterating prompts when the real bottleneck was input quality.
  • Run a 5-SKU pilot per category before committing to batch. Tonal conventions vary more between Amazon JP categories than I expected.
  • Save the edited human-finished listings as few-shot examples for future runs. Claude pattern-matches to good examples better than to instructions.

If you're trying something similar

Happy to compare notes. Drop a comment with what category you're working in and what's breaking — I'll respond with what worked or didn't in my version.

— Posting from Osaka. Currently running multi-marketplace EC in Japan and building tooling around it.