What problem does it solve? Wrangler CLI flags, config fields, and subcommands change frequently, so relying on memorized syntax leads to outdated commands and broken deployments. This Skill ensures correct, current Wrangler usage by biasing toward retrieval from official Cloudflare docs and the local config schema before running any command. ## Core Features & Use Cases - Deployment & Development: Initialize projects, run local dev servers with remote bindings, deploy Workers, manage versions, and roll back releases. - Resource Management: Create and configure KV namespaces, R2 buckets, D1 databases, Vectorize indexes, Hyperdrive configs, Queues, Containers, Workflows, Pipelines, and Secrets Store via CLI commands and wrangler.jsonc bindings. - Secrets & Security: Handle secrets safely using interactive prompts, file-based input, or bulk JSON without exposing values in command arguments. - Use Case: You need to deploy a Worker with a D1 database and R2 bucket. The Skill guides you to write a correct wrangler.jsonc with bindings, run wrangler types to generate TypeScript definitions, test locally with wrangler dev, and deploy with wrangler deploy --dry-run first. ## Quick Start Ask the AI to create a new Cloudflare Worker with a D1 database binding and deploy it using Wrangler.