Cloud deployment routing workflow
Skill gaelic-ghost/socket/skills/cloud-deployment-routing-workflow
The Source for macOS Agent Workflows
npx -y skills add gaelic-ghost/socket --skill cloud-deployment-routing-workflowAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 6 stars6 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
Choose a cloud deployment path before implementation. Route AWS work to the official AWS Agent Toolkit and Azure work to Microsoft's Azure Skills plugin while keeping credentials, regions, and mutation boundaries explicit.
The file declares its own license as Apache-2.0. That is the author’s claim about this one file, and it is not the same thing as the license GitHub reports for the repository, which is listed with the other numbers below.
SKILL.md
8.4 KB, as published. Nobody here has run it
Cloud Deployment Routing Workflow
Purpose
Choose the smallest correct cloud deployment path before changing infrastructure, credentials, or production-facing configuration.
The practical decision is whether the agent should use an official provider plugin, a provider MCP server, a provider CLI, a framework-owned deployment workflow, or a Socket-owned provider skill.
When To Use
- Use this skill when the user wants cloud deployment help and has not chosen a provider-owned workflow.
- Use this skill when a project mentions AWS, Cloudflare, Vercel, Fly.io, Azure, GCP, Terraform, Pulumi, CDK, CloudFormation, SAM, containers, serverless, hosting, DNS, secrets, deployment, or production infrastructure.
- Use this skill before adding provider credentials, changing cloud resources, deploying production services, or wiring new MCP server configuration.
- Use this skill when an official provider plugin may already own the requested work.
Source Check
Use repo-local deployment files, checked-out provider config, installed provider CLIs, official provider plugins, and official provider documentation before making claims about current deployment behavior:
- Agent Toolkit for AWS
- AWS Agent Toolkit plugins
- AWS MCP Server setup
- AWS CLI
- AWS SAM CLI
- Azure Skills
- Azure MCP Server
- Azure Developer CLI
Translate any documentation rule into the concrete repository decision it changes.
Routing Workflow
- Inspect the project shape:
- deployment manifests such as
template.yaml,serverless.yml,cloudformation.yml,cdk.json,samconfig.toml,wrangler.toml,vercel.json,fly.toml,Dockerfile,compose.yaml, Terraform, or Pulumi files - package scripts, Make targets, CI workflows, release docs, and provider-specific README sections
- existing credentials guidance, environment variables, account aliases, regions, profiles, and secret names
- deployment manifests such as
- Identify the deployment job:
- provider selection
- local credential setup
- documentation lookup
- infrastructure planning
- preview or diff
- dev/staging deploy
- production deploy
- failure triage
- cost, IAM, observability, or rollback review
- Route AWS work first:
-
Prefer the official AWS Agent Toolkit for AWS for Codex when the task is general AWS discovery, AWS MCP access, AWS CLI or AWS SAM setup, CDK, CloudFormation, serverless, containers, storage, observability, billing, SDK usage, or deployment.
-
Install path for Codex users:
codex plugin marketplace add aws/agent-toolkit-for-awsThen use
/pluginsin Codex to installaws-core. -
Do not duplicate AWS MCP configuration in Socket while
aws-corebundles that configuration. -
Do not copy AWS Agent Toolkit skills into Socket.
-
- Route non-AWS work:
- For Azure, prefer Microsoft's Azure Skills plugin for Azure MCP, Foundry MCP,
preparation, validation, deployment, diagnostics, cost, RBAC, and service
guidance. Add its marketplace with
codex plugin marketplace add microsoft/azure-skills, then installazurethrough/plugins. - Do not duplicate Azure MCP declarations, Azure CLI or Azure Developer CLI setup, Azure Skills workflows, or account-specific IaC in Socket.
- Use a first-party provider plugin or MCP server when one exists and is current.
- Use framework-owned Socket skills when the deployment surface is already covered by a stack workflow, such as
server-side-swift:fly-io-deployment-workflow. - Add or use a Socket-owned provider skill only when no official provider-owned agent surface exists or when Socket needs a small provider-neutral decision layer.
- For Azure, prefer Microsoft's Azure Skills plugin for Azure MCP, Foundry MCP,
preparation, validation, deployment, diagnostics, cost, RBAC, and service
guidance. Add its marketplace with
- Confirm mutation boundaries:
- account or organization
- project or app
- region
- profile or identity
- environment such as local, dev, staging, or production
- exact resource mutations
- expected cost or billing effect
- rollback or cleanup path
- Choose validation:
- read-only documentation or discovery query for planning
- provider CLI version and auth check for local setup
- plan, diff, dry-run, validate, package, or synth command before deploy
- smoke test, logs, metrics, and rollback checks after deploy
Recommendations
AWS
Use the official AWS Agent Toolkit for AWS as the default Codex path. It owns AWS MCP setup and the curated AWS skill set, including common deployment, CDK, CloudFormation, serverless, container, storage, observability, billing, and SDK workflows.
Use Socket only for the routing decision, local repo handoff, and any project-specific deployment guardrails that the official AWS plugin does not know.
Azure
Use Microsoft's Azure Skills plugin as the default Codex path. It owns Azure MCP and Foundry MCP configuration plus the provider workflows for preparation, validation, deployment, diagnostics, cost, identity, and Azure services.
Use Socket only to select that official surface, preserve repository-specific
deployment boundaries, and hand framework implementation back to the owning stack
plugin. For an F# web app, select Giraffe, Falco, Oxpecker, or another server
shape through dotnet:choose-fsharp-web-framework before asking Azure Skills to
plan or mutate Azure infrastructure.
Framework-Owned Deployments
When a stack plugin already owns a deployment path, use that plugin for stack-specific implementation details. For example, Fly.io deployment for Vapor or Hummingbird services belongs in server-side-swift because that workflow depends on Swift package, Dockerfile, health-check, and runtime conventions.
Future Provider Skills
Add future provider skills as small routing or implementation slices. Good candidates include Cloudflare, Vercel, Fly.io, GCP, Terraform, Pulumi, and CDK when an official provider plugin does not already give Codex a better maintained path.
Output Shape
Return:
Provider: AWS, Cloudflare, Vercel, Fly.io, Azure, GCP, multi-cloud, or undecided.Primary surface: official provider plugin, MCP server, provider CLI, framework-owned skill, Socket provider skill, or user decision needed.Credential boundary: account, region, profile, environment, and whether credentials are required for the next step.Mutation boundary: read-only, plan/diff, staging deploy, production deploy, cleanup, or blocked.Validation path: exact commands or agent checks to run before and after mutation.Next handoff: official plugin install, provider docs, stack skill, or provider-specific Socket backlog item.
Guardrails
- Do not invent provider setup steps when an official provider plugin or current provider docs own the path.
- Do not configure or mutate cloud accounts without confirming account, region, profile, environment, and intended resource changes.
- Do not store credentials, tokens, account IDs, secrets, local profiles, or
.envfiles in git. - Do not present AWS CLI, AWS SAM CLI, or AWS MCP setup as Socket-owned while AWS Agent Toolkit owns the official Codex path.
- Do not present Azure CLI, Azure Developer CLI, Azure MCP, Foundry MCP, or Azure Skills setup as Socket-owned while Microsoft's Azure Skills plugin owns the official Codex path.
- Do not deploy to production by default. Use planning, validation, and explicit user confirmation before production mutations.