Today, I built and shipped my first AI automation — a YouTube Daily Digest that runs entirely in the cloud. Every morning, it checks a YouTube channel (list that I have given) for new uploads, pulls the transcript, summarizes it with AI, and drops the digest straight into my inbox. No manual checking, no scrolling through YouTube — it just runs while I sleep.
I built it with Trigger.dev for the scheduling and orchestration, OpenAI for the summarization, and Claude Code to write and debug the actual TypeScript. The build wasn't friction-free. My first live test run failed with a cryptic 429 error. Instead of guessing, Claude Code read the full stack trace, correctly diagnosed it as an OpenAI billing issue rather than a code bug, and pointed me to the exact setting to fix. One change later, the pipeline ran clean end to end — transcript in, summary out, email delivered.
It's a small automation, but getting something live in the cloud, running on a schedule, with zero ongoing effort from me, feels like a real milestone. This is what "working while you sleep" actually looks like.
#AIS Challenge