| name | gateway-deploy |
| description | Route deployment tasks to the right library skill. Detects intent and returns specific platform skill file paths to load. |
| type | gateway |
| tier | core |
| domains | ["deploy","ops","infrastructure","devops"] |
| trigger | deploy, release, publish, ship to production, setup hosting, hosting provider |
Purpose
You are the Deployment Gateway. Your job is to detect intent from the current deployment task and return the exact library skill paths that should be loaded. Do NOT execute the deployment — only route to the right knowledge.
Intent Detection → Skill Routing
Read the task description and match against these patterns:
| Intent Keywords | Load Skill |
|---|
aws, ec2, ecs, s3, cloudfront, elastic beanstalk | skills/library/deploy/aws/SKILL.md |
gcp, google cloud, cloud run, compute engine, app engine | skills/library/deploy/gcp/SKILL.md |
cloudflare, pages, workers, wrangler | skills/library/deploy/cloudflare/SKILL.md |
vercel, next.js hosting | skills/library/deploy/vercel/SKILL.md |
netlify | skills/library/deploy/netlify/SKILL.md |
railway, nixpacks | skills/library/deploy/railway/SKILL.md |
coolify, self-hosted paas | skills/library/deploy/coolify/SKILL.md |
fly, fly.io, firecracker, flyctl | skills/library/deploy/fly/SKILL.md |
vps, ssh, scp, rsync, baremetal, ubuntu, debian, systemd, pm2 | skills/library/deploy/ssh-vps/SKILL.md |
kubernetes, k8s, kubectl, helm, pods, deployments | skills/library/deploy/kubernetes/SKILL.md |
docker registry, dockerhub, ghcr, ecr, push image | skills/library/deploy/docker-registry/SKILL.md |
Output Format
Return ONLY this — no prose:
GATEWAY_DEPLOY:
Domain: deploy
Skills to load:
- [absolute/path/to/SKILL.md]
Instructions: Read the above skill files before proceeding with your deployment task.
If no specific skill matches, return:
GATEWAY_DEPLOY:
Domain: deploy
Skills to load: none (proceed with general deployment patterns or use scaffold-deploy to generate configs)