Built a Daily YouTube → LinkedIn Pipeline with OpenClaw: Architecture, Gotchas, and Lessons Learned

A developer published a detailed breakdown of an OpenClaw skill that automates a daily YouTube-to-LinkedIn content pipeline. The skill checks ~30 AI YouTubers each morning, fetches transcripts via an Apify actor, runs LLM analysis through the OpenClaw Gateway, and writes 26 columns of data per video to a Google Sheet. Cost: ~$0.20/day on Apify, with no separate LLM key needed (uses existing Codex quota). 90% of transcripts come from native captions; Whisper rarely fires.
Key Architecture
Runs at 9am daily, pulls transcripts via Apify async (the sync endpoint returns BOT_DETECTION consistently). LLM output is nested inside outputs[0].text, not at the envelope top. Sheet writes must be batched in groups of 5 to avoid ARG_MAX silent failure — one creator drops 15+ videos/day.
Critical Gotchas
- Secrets in
entries.Xblocks get nuked on skill uninstall. The author lost a YouTube API key this way. Everything goes inenv.varsnow. - Codex idle-turn watchdog kills Discord turns after 5-10 minutes.
timeoutSecondsdoesn't help. The fix: background long tasks withsetsid bashand use a Proactivity cron to self-poll status. - Python stdout is block-buffered when piped via nohup. Background runs produced 0-byte logs until completion. Use
python3 -uorPYTHONUNBUFFERED=1.
LLM Tuning via Sheet
The LLM analysis is customized by 4 user-editable cells in the Google Sheet: linkedin_focus, audience_description, voice_and_tone, avoid. No code changes needed to adjust voice — edit a cell, and the skill adapts. The author seeks feedback on whether this pattern is optimal.
The author plans to publish the skill to ClawHub after a few weeks of production testing.
📖 Read the full source: r/openclaw
👀 See Also

Self-hosted OpenClaw AI agent creates passive accountability system for developers
A developer running OpenClaw on a Mac mini 24/7 reports the AI agent's persistent memory of tasks and projects creates an effective accountability system, helping complete projects that previously stalled.

Developer builds YouTube news multistream viewer with Claude Code
A developer used Claude Code to build Beholder, a real-time news monitoring dashboard that displays dozens of live YouTube news streams simultaneously with media bias ratings. The tool includes 200+ channels, live news tickers, and works across mobile, tablet, and desktop.

Claude Code Enables New Grad to Build Real-Time Multiplayer Game Solo
A new grad with no formal SWE experience used Claude Code to build imageclash.net, a real-time multiplayer party game with serverless GPU autoscaling, mobile-first controller UX, and R2-based image lifecycle management.

Alien Pinball Postmortem: Full Physics Pinball Game Built with Claude + AI Toolchain
A developer shares how they built a complete browser pinball game using Claude Code (Opus), ChatGPT for art, Suno for music, and LittleJS+Box2D. Includes PixiJS-less workflow, AI-generated art aligned to physics geometry, and practical lessons on AI code co-development.