wrangler

Manage Cloudflare Workers and resources via the Wrangler CLI.

190|14|Updated May 20, 2014
One-click install
npx skills add https://github.com/elithrar/dotfiles --skill wrangler
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: wrangler
Source: https://github.com/elithrar/dotfiles/tree/main/.config/opencode/skill/wrangler
Command: npx skills add https://github.com/elithrar/dotfiles --skill wrangler

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Wrangler unifies the development, deployment, and management of Cloudflare Workers and related resources into a single command-line interface, reducing setup overhead and improving workflow consistency.

Core Features & Use Cases

  • Initialize projects with wrangler init and run local development with wrangler dev
  • Deploy, manage, and monitor Workers, KV, R2, D1, and other bindings across environments
  • Use Case: A team can automate edge deployments and enforce environment-specific configurations from a shared config

Quick Start

Install wrangler, initialize a project with wrangler init my-app, then start local development with wrangler dev and publish with wrangler deploy.

Frequently Asked Questions about wrangler

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I deploy Cloudflare Workers using Wrangler?

Deploy Cloudflare Workers with Wrangler by installing the CLI via npm, initializing a project with wrangler init, testing locally with wrangler dev, then publishing with wrangler deploy. Wrangler handles all deployment steps and resource bindings automatically.

What do I need to install before using Wrangler?

Wrangler requires Node.js and npm installed on your system. After that, install Wrangler as a dev dependency with npm install -D wrangler to set up the CLI for managing Cloudflare Workers.

Can I manage KV, R2, and D1 bindings with Wrangler?

Yes, Wrangler unified CLI manages Cloudflare Workers alongside KV, R2, D1, and other resource bindings. Use wrangler commands to configure, deploy, and monitor all bindings across staging and production environments.

How do I set up local development for Cloudflare Workers?

Start local development with wrangler dev after initializing a project. This command runs your Worker locally, letting you test edge application logic before deploying to production with wrangler deploy.

Can I use Wrangler to manage secrets and environment-specific configurations?

Yes, Wrangler supports wrangler secrets command to manage sensitive data and environment-specific configurations. This enables teams to enforce different settings across staging and production deployments from a unified config.