wrangler

Configure and operate Cloudflare Workers projects using Wrangler CLI commands.

1|Updated Jun 27, 2026
One-click install
npx skills add https://github.com/babually/bongo-template --skill wrangler-babually
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: wrangler
Source: https://github.com/babually/bongo-template/tree/main/.agents/skills/wrangler
Command: npx skills add https://github.com/babually/bongo-template --skill wrangler-babually

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

This Skill helps you safely create, configure, test, and deploy Cloudflare Workers and related edge resources without guessing CLI syntax or config shapes.

Core Features & Use Cases

  • Worker lifecycle management: Start local development, deploy to Cloudflare, inspect logs, and roll back versions.
  • Cloudflare resource operations: Work with D1, KV, R2, Vectorize, Hyperdrive, Queues, Containers, Workflows, Pipelines, Secrets Store, and Pages.
  • Best-practice guidance: Prefer current docs, use modern wrangler.jsonc config, generate types after config changes, and keep secrets out of commands.
  • Use Case: A developer updating an API worker can validate bindings locally, generate types, deploy a staging environment, and confirm runtime behavior before production release.

Quick Start

Ask for a Cloudflare Workers task and include your current wrangler config or command goal so the skill can generate the safest, up-to-date Wrangler instructions.

Frequently Asked Questions about wrangler

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

FAQPage Schema
How do I deploy a Cloudflare Worker using the wrangler CLI?

To deploy a Cloudflare Worker using the wrangler CLI, configure your wrangler.jsonc file, validate bindings locally, generate types, and execute the deploy command for your target environment to push the project to the edge.

What is the best way to manage secrets in Cloudflare Workers?

The best way to manage secrets in Cloudflare Workers is to use secure secret handling commands that inject sensitive values into your environment without exposing them in your wrangler.jsonc configuration or terminal history.

Does wrangler support local development and testing for D1 and R2 bindings?

Yes, wrangler supports local development and testing for D1 and R2 bindings, allowing you to validate resource interactions locally before deploying your Cloudflare Workers to a production environment.

Can I configure Workflows and Queues in a wrangler.jsonc file?

Yes, you can configure Workflows and Queues in a wrangler.jsonc file by defining the appropriate bindings, validating the configuration shape, and generating types to ensure safe operations across your Cloudflare resources.

Why are my wrangler commands failing after updating my Cloudflare project configuration?

Wrangler commands may fail after configuration updates if you use outdated syntax or invalid wrangler.jsonc shapes; applying version-aware command syntax and regenerating types after config changes ensures safe operations.

How do I roll back a Cloudflare Pages or Worker deployment?

To roll back a Cloudflare Pages or Worker deployment, use the version management commands in the wrangler CLI to inspect previous versions and revert your production environment to a stable release.