wrangler

Deploy and manage Cloudflare Workers and associated resources via the wrangler CLI.

Updated Aug 23, 2026
One-click install
npx skills add https://github.com/NAinfini/Guild_Management --skill wrangler-nainfini
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: wrangler
Source: https://github.com/NAinfini/Guild_Management/tree/main/.kilocode/skills/wrangler
Command: npx skills add https://github.com/NAinfini/Guild_Management --skill wrangler-nainfini

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

The wrangler skill centralizes the Cloudflare Workers CLI workflow, enabling developers to quickly deploy, develop, test, and manage Workers and related resources from a single interface, reducing setup time and misconfigurations.

Core Features & Use Cases

  • Unified workflow: Deploy, develop, and manage Workers, KV, R2, D1, Vectorize, Hyperdrive, Workers AI, Containers, Queues, Workflows, Pipelines, and Secrets Store.
  • Environment and configuration management: Leverage wrangler.jsonc/configs and environment blocks for staging and production workflows.
  • Local development and edge deployment: Use wrangler dev for local testing and wrangler deploy for edge deployments in production.

Quick Start

Use the wrangler CLI to initialize a new project, run a local development server, and deploy to Cloudflare.

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 to the edge using a CLI?

You deploy Cloudflare Workers by configuring wrangler.jsonc and running the wrangler CLI to build and push your serverless application directly to the edge environment. It requires Node.js and npm to initialize and execute the deployment commands.

Can I manage Cloudflare R2, D1, and KV resources from a single CLI?

Yes, you can manage R2, D1, KV, and other Cloudflare resources from a single CLI using wrangler. It provides a unified workflow to provision and operate serverless storage, AI, and queueing services within your local and edge environments.

Do I need Node.js and wrangler.jsonc to develop Cloudflare Workers locally?

Yes, you need Node.js, npm, and a properly configured wrangler.jsonc file to develop Cloudflare Workers locally. The wrangler CLI uses these prerequisites to initialize projects and execute local development servers for testing.

What is the best way to separate staging and production environments for Cloudflare Workers?

The best way to separate staging and production environments for Cloudflare Workers is by using environment blocks within your wrangler.jsonc configuration. This allows you to manage distinct settings and deploy to specific targets.

How does local development testing work for Cloudflare Workers before edge deployment?

Local development testing for Cloudflare Workers works by using the wrangler dev command to spin up a local server. This simulates the edge environment, allowing you to test bindings and configurations before running wrangler deploy for production.

Can I manage secrets and bindings for serverless apps on Cloudflare?

Yes, you can manage secrets and bindings for serverless apps on Cloudflare using the wrangler CLI. It allows you to securely configure and attach environment variables, secrets, and resource bindings required by your Workers.