Guided Cloudflare Workers deployment with environment selection, pre-deploy validation, and safety checks. Supports staging, production, and custom environments.
/plugin marketplace add secondsky/claude-skills/plugin install workers-ci-cd@claude-skills--env <environment> (optional: prod, staging, dev)# Workers Deploy Command Safe, guided deployment workflow for Cloudflare Workers with environment management and pre-deploy validation. ## Execution Workflow ### Phase 1: Environment Detection Read and analyze the project configuration: 1. **Check for wrangler config**: - Look for `wrangler.jsonc` or `wrangler.toml` - If neither exists, abort: "No wrangler configuration found. Run `bunx wrangler init` first." 2. **Parse environments**: - Extract environment configurations from wrangler config - Identify: name, routes, vars, bindings for each environment - Common environ...