
In a field that moves as fast as AI, missing a week of content can feel like falling a year behind. Here’s the n8n workflow I built to stay current — without watching a single video I don’t need to.
My YouTube subscriptions used to be a source of anxiety. Every AI researcher, builder, and commentator I follow seemed to be posting daily, and my watch-later queue had quietly turned into a graveyard of good intentions. The problem was never that the content wasn’t worth watching. It was that I had no way to tell which parts were worth my time before committing to a 40-minute video.
So I built a workflow that solves exactly that. I feed it the channels I care about, and the moment any of them publishes a video, I get an email — not just a headline and a thumbnail, but a layered summary that tells me what the video covers and, crucially, where. Enough to make a real decision about whether to sit down and watch it from the start.

How it works
The workflow runs on n8n and chains together three things: a way to monitor channels, a way to understand video content, and a way to deliver the result cleanly.
Step 1 — Monitor channels via the YouTube Data API
The YouTube Data API v3 pulls the latest uploads from any channels you specify — returning the video URL, title, thumbnail, and publish date. This is what replaces the act of manually opening YouTube and scrolling.
YouTube Data API v3 documentation
Step 2 — Generate layered summaries with WayinVideo’s API
Each new video URL gets passed to WayinVideo’s video summarization API via an n8n HTTP Request node. It returns two things: a concise high-level summary of the whole video, and a breakdown by timestamp — so you can see what’s covered at the 4-minute mark versus the 22-minute mark. That second layer is what actually changes how useful this is.
Step 3 — Format the summary for email
An n8n Function node assembles everything into a clean HTML email — thumbnail, title, link, the overview summary, and the timestamped breakdown. Each section is self-contained, so scanning five videos in one email takes about the same time as reading a short newsletter.
Step 4 — Deliver to inbox
The Email node (SMTP or Gmail) sends the compiled digest with a dynamic subject line. The whole thing arrives looking less like a notification and more like a briefing — something you open deliberately, not reactively.
The part that actually matters
Most YouTube automation stops at “here’s a summary.” That’s fine for some use cases, but for technical content — AI research, engineering talks, long-form interviews — a single paragraph summary often doesn’t tell you whether you need to watch it or not. You know what the video is about, but not whether it covers the specific thing you’re trying to learn.
The timestamp breakdown is what changes the decision calculus. Within thirty seconds I know whether there’s something worth scrubbing to.
The segmented-by-timestamp layer changes that. Say a researcher posts a 90-minute conference talk. The summary tells you the thesis. The timestamp breakdown tells you that the part about fine-tuning on domain-specific data starts at 34 minutes and runs for about eight. That’s enough to decide: watch all of it, jump to that section, or skip it entirely and archive the summary for later.
What I actually have now: a single email per new upload from any subscribed channel, containing a one-paragraph overview plus a structured, timestamped outline. The video stays unplayed until I’ve decided it’s worth it — which means the videos I do watch, I watch with intent.
Why n8n specifically
n8n’s scheduling and HTTP Request nodes make it easy to chain external APIs without writing a full backend. The workflow runs on a cron schedule — every few hours — and the modular structure means adding a new channel or swapping the email provider is a two-minute change, not a refactor. It’s also self-hostable, which matters if you’re moving significant amounts of data through third-party APIs.
This isn’t just an AI-follower problem
I built this because I follow AI channels obsessively, but the underlying issue — too many good creators, not enough hours — is universal. The workflow doesn’t care what the videos are about. It just needs a channel list and a reason to care about staying current. Here’s what it looks like for a few different kinds of people.
Gamers & esports fans
Game patches, tier list updates, and meta breakdowns move fast. A week of missed uploads can mean playing with an outdated understanding of the game. Get a digest the moment a patch analysis drops — skip the 45-minute reaction video and read whether your main character got buffed or nerfed in 30 seconds.
Self-learners & students
Educational channels covering programming, science, history, or finance often publish dense, long-form content that rewards attention — but demands it upfront. The timestamp breakdown turns a 60-minute lecture into a navigable outline. You know exactly which 12 minutes contain what you actually needed.
Cooking enthusiasts
Recipe channels publish constantly, and most videos spend the first third on background and history before getting to the technique. The summary captures the dish, key ingredients, and notable technique. The timestamps tell you exactly when the actual cooking starts.
Mindset & personal development followers
Motivational and self-improvement channels often cover the same themes with different angles. It’s hard to know before watching whether a new video adds something genuinely new. The overview summary surfaces the core argument immediately — save the full watch for the videos that say something you haven’t heard before.
Finance & investing followers
Macro commentary, stock analysis, and economic breakdowns are time-sensitive. An insight buried at the 28-minute mark of a video published three days ago doesn’t help much. Catch relevant analysis the day it drops and know the thesis and the key data points without sitting through the preamble.
Travel planners & lifestyle followers
Travel vlogs and lifestyle channels often bury the most useful information — visa tips, budget breakdowns, honest takes on a destination — inside long narrative videos. Surface the practical information and jump directly to the relevant segment. Keep the full watch for the channels whose storytelling you actually enjoy.
The common thread across all of these isn’t the topic — it’s the structure of the problem. You follow people whose judgment you trust. They post more than you can watch. You want to stay current without making YouTube your second job. The workflow doesn’t change what you watch. It changes how much of your decision about whether to watch is left to chance.
The real value of building this wasn’t the time saved on individual videos. It was the shift from reactive consumption — opening YouTube because something felt urgent — to a deliberate, asynchronous reading of what’s new. The FOMO doesn’t disappear entirely, but it becomes manageable. You know what’s out there. You decide what it’s worth.



