Japan's AI scene moves fast — but almost everything is in Japanese. I built an n8n workflow that runs every morning at 7 AM, scrapes the top Japanese AI news, translates each article using Claude AI, and delivers a clean English briefing to my inbox. Total cost: $0.03 per run . Here's exactly how I built it. The Problem I follow Japanese AI research closely, but manually translating 10+ articles every morning was killing my time. I needed automation. The Workflow Architecture Schedule Trigger (7 AM daily) → HTTP Request (fetch RSS feeds from Japanese AI sources) → Split in Batches (process each article) → IF node (filter: published today only) → HTTP Request (Claude API - translate + summarize) → Code node (parse JSON response, format output) → Gmail (send ranked daily briefing) Enter fullscreen mode Exit fullscreen mode Key Implementation Details 1. The AI Translation Node I use Claude's API via HTTP Request node.…