If you're building YouTube automation tools that run in production, you know the pain points: managing OAuth tokens securely, uploading fonts to cloud storage, and deploying to Cloud Run with proper configuration. The ytb-deploy skill pack solves these exact problems with a clean, CLI-driven workflow that integrates seamlessly with Claude Code.
Most YouTube automation projects face three critical infrastructure challenges:
The ytb-deploy skill pack addresses each of these with purpose-built, MIT-licensed tools that work together as a cohesive system.
The deploy-youtube-token skill provides a secure, automated way to store your YouTube OAuth tokens in Google Cloud Secret Manager. Instead of hardcoding credentials or using insecure environment variables, this workflow:
youtube-data.tar.gzYOUTUBE_DATAThis approach eliminates the risk of accidentally committing tokens to Git repositories while maintaining easy access for your deployed services.
youtube-poetry.json and youtube-news.json. Each channel gets its own refresh token, allowing you to manage different YouTube accounts from the same deployment.
Video generation tools need fonts, but embedding them directly in Docker images creates maintenance headaches. The deploy-font-upload skill solves this by uploading fonts to Google Cloud Storage (GCS) where they can be downloaded at runtime.
The current font collection includes:
BlackHanSans-Regular.ttf — For titles (Korean + Latin)GmarketSansTTFBold.ttf — For subtitles (Korean + Latin)NotoSansCJKsc-Bold.otf — For CJK languages (Japanese/Chinese)NotoSansDevanagari-Bold.ttf — For Hindi and other Devanagari scriptsWith just one command (npx tsx src/scripts/upload-fonts.ts), your fonts are uploaded to GCS and ready for your Cloud Run service to download automatically during startup.
The deploy-cloud-run skill handles the entire deployment pipeline for TypeScript-based YouTube automation tools:
npx tsc with proper build configurationThe workflow is designed to handle the specific constraints of Cloud Run environments, including avoiding problematic dependencies like curl_cffi and using system-installed ffmpeg instead of npm packages that cause segmentation faults.
Getting started with ytb-deploy is straightforward:
#!/bin/bash # Add the ClickAround marketplace /plugin marketplace add https://github.com/clickaround/marketplace # Install the ytb-deploy skill pack /plugin install ytb-deploy@clickaround
Once installed, you can use the following commands:
/deploy:youtube-token — Securely deploy YouTube OAuth tokens to Secret Manager/deploy:font-upload — Upload fonts to Google Cloud Storage/deploy — Build and deploy your TypeScript project to Cloud Run/deploy test=true — Deploy and run automated testsAll skills are 100% open source under the MIT license, with complete transparency into the implementation details.
ytb-deploy is particularly valuable for:
The modular design means you can use individual components (like just the token management) or the complete workflow depending on your needs.
While ytb-deploy focuses on infrastructure automation, it's designed to work alongside other ClickAround skill packs:
The complete ecosystem gives you end-to-end YouTube automation, from content creation to production deployment.
⭐ Star this skill on GitHub — if ytb-deploy saves you time managing YouTube infrastructure, give it a star. That's the only marketing budget I have.
🚀 Pro Bundle (₩59,000 lifetime) — get all 7 skill packs including ytb-deploy, plus Discord access and monthly Q&A sessions.
💡 ytb-deploy is part of ClickAround Creator Pro — the complete toolkit for YouTube creators building their own automation infrastructure.
Published on May 15, 2026