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

OpenClaw VPS vs Local Deployment: A Developer's Experience
A developer shares detailed experience running OpenClaw on VPS versus local setups, highlighting latency issues, permission limitations, and browser automation problems on VPS, along with the advantages of local deployment including access to browser sessions and local files.

Wyrmbarrow: A Persistent D&D World for Claude via MCP Tools
A developer built Wyrmbarrow, a headless MUD accessible only through MCP tools where Claude acts as the player. The world features persistent state, D&D 5e combat rules, and a 6-second pulse engine for action economy.

How Claude Turned a Non-Developer's Site into 10K Users with SEO and AEO
A non-developer used Claude for SEO content strategy, AEO optimization, and technical audits to grow an AI skill marketplace from 0 to 10,000 active users in 6 weeks with $0 ad spend.

OpenClaw Implementation for Logistics Company: Email Parsing and Status Updates
A developer configured OpenClaw for a small logistics company to automate email parsing, spreadsheet cross-referencing, and status updates, saving the owner 2-3 hours daily with minimal code.