This skill helps deploy and manage the blog on Google Cloud Platform Cloud Run.
Deploys and manages blog applications on Google Cloud Run with scaling and monitoring.
/plugin marketplace add ChrisTowles/towles-tool/plugin install towles-tools@towles-toolThis skill inherits all available tools. When active, it can use any tool Claude has access to.
README.mdThis skill helps deploy and manage the blog on Google Cloud Platform Cloud Run.
To deploy the blog to GCP:
cd packages/blog
gcloud builds submit \
--tag us-central1-docker.pkg.dev/blog-chris-towles/blog-images/blog:latest \
--project=blog-chris-towles
gcloud run deploy blog \
--image us-central1-docker.pkg.dev/blog-chris-towles/blog-images/blog:latest \
--platform managed \
--region us-central1 \
--add-cloudsql-instances blog-chris-towles:us-central1:blog-db \
--allow-unauthenticated \
--project=blog-chris-towles
View application logs from Cloud Run:
gcloud run logs read blog --region=us-central1 --project=blog-chris-towles
Follow logs in real-time:
gcloud run logs tail blog --region=us-central1 --project=blog-chris-towles
Check service status and configuration:
gcloud run services describe blog --region=us-central1 --project=blog-chris-towles
List all Cloud Run services:
gcloud run services list --project=blog-chris-towles
Get service URL:
gcloud run services describe blog --region=us-central1 --project=blog-chris-towles --format='value(status.url)'
Set environment variables:
gcloud run services update blog \
--set-env-vars="KEY1=value1,KEY2=value2" \
--region=us-central1 \
--project=blog-chris-towles
View current environment variables:
gcloud run services describe blog --region=us-central1 --project=blog-chris-towles --format='value(spec.template.spec.containers[0].env)'
List revisions:
gcloud run revisions list --service=blog --region=us-central1 --project=blog-chris-towles
Rollback to a previous revision:
gcloud run services update-traffic blog \
--to-revisions=REVISION_NAME=100 \
--region=us-central1 \
--project=blog-chris-towles
This skill should be used when the user asks to "create a hookify rule", "write a hook rule", "configure hookify", "add a hookify rule", or needs guidance on hookify rule syntax and patterns.
Create distinctive, production-grade frontend interfaces with high design quality. Use this skill when the user asks to build web components, pages, or applications. Generates creative, polished code that avoids generic AI aesthetics.