YouTube creators building automated video tools face a common challenge: deploying complex applications to production. The ytb-deploy skill pack solves this by providing three specialized deployment workflows that automate the most time-consuming infrastructure tasks — all accessible through simple Claude Code commands.
The core capability of ytb-deploy is automating Cloud Run deployments for YouTube automation tools. Instead of manually running gcloud builds submit, tracking build status, and verifying deployment success, you can now deploy your entire application with a single command:
/deploy
This command orchestrates the complete deployment pipeline:
npx tsc --project tsconfig.build.jsonThe deployment workflow handles all the complexity so you can focus on building features rather than infrastructure. With built-in error handling and status reporting, you'll know immediately if something goes wrong during the build process.
Creating professional-looking videos requires proper font handling. The /deploy:font-upload command automates uploading fonts to Google Cloud Storage (GCS), where they're automatically downloaded by your Cloud Run application at startup.
This eliminates the need to bundle fonts with your application or manage font versions across environments. The skill supports six professionally selected fonts:
With font management automated, you can easily update fonts across all your deployed applications without redeploying code — just run /deploy:font-upload and your Cloud Run instances will pick up the new fonts on their next startup.
YouTube API access requires secure storage of OAuth tokens. The /deploy:youtube-token command provides a production-ready solution for managing these sensitive credentials in Google Cloud Secret Manager.
Instead of hardcoding tokens in your application or storing them insecurely, this workflow:
This approach follows Google Cloud security best practices and ensures your YouTube credentials remain protected while being easily accessible to your deployed applications. The Cloud Run service automatically decodes and extracts the tokens at runtime, making the entire process seamless.
Before ytb-deploy, YouTube creators spent hours configuring CI/CD pipelines, managing font assets across environments, and securing API credentials. Now, these infrastructure concerns are reduced to three simple commands that handle everything:
/deploy — Deploy your application to Cloud Run/deploy:font-upload — Update fonts across all deployments/deploy:youtube-token — Securely manage YouTube API credentialsTo start using ytb-deploy, follow these three simple steps:
/plugin marketplace add https://github.com/clickaround/marketplace/plugin install ytb-deploy@clickaround/deployNo complex configuration required. The skill pack includes all necessary templates and scripts, and works with your existing Google Cloud project.