Title: AI-Powered Short-Form Video Content Factory (TikTok / Instagram Reels)
Context: Business / Content Production
Problem: Producing a steady stream of vertical short-form video content — script writing, visual generation, voice-over, character animation, editing, and publishing — is time-consuming and hard to scale manually, especially for a solo creator or small team running multiple channels.
Solution: A system of 6 interconnected workflows in n8n Cloud automates the full content pipeline from idea to published video, coordinated entirely through a single Google Sheet — no manual handoffs between steps.
Overall logic:
script_ready.images_done.clips_done.rendered + final video link.posted.Key feature: Workflows never call each other directly — they communicate purely through status fields in Google Sheets (script_ready → images_processing → images_done → animating → clips_done → rendering → rendered → posting → posted). This lets each module be tested, re-run, or swapped independently, and lets multiple videos move through the pipeline in parallel without collisions.
The core system prompt lives in a single Code node ("Prompt Builder") inside WF_01. It's assembled dynamically from the Config sheet — niche, language, target video length, number of scenes, and character mode (a single recurring AI persona vs. fresh characters every video). The model always opens with a hook in the first scene, mixes "talking" and "b-roll" scene types, and closes with a call to action. To keep content fresh, the prompt includes the last 40 used topics from the Videos sheet as a forbidden list, forcing a new angle every run. Output is constrained to a strict JSON schema so the rest of the pipeline can parse it without extra cleanup.
The system integrates four external services:
openai/gpt-oss-20b:free, a no-cost model; any OpenRouter model can be swapped in via one Config cell for higher quality)