deploy

Build and deploy web applications to Cloudflare Workers using the wrangler CLI.

Updated Jan 8, 2026
One-click install
npx skills add https://github.com/zxj719/ai_wolf_game --skill deploy-zxj719
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: deploy
Source: https://github.com/zxj719/ai_wolf_game/tree/main/.agents/skills/deploy
Command: npx skills add https://github.com/zxj719/ai_wolf_game --skill deploy-zxj719

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

This Skill automates the process of building and deploying your application to Cloudflare Workers, streamlining your deployment pipeline.

Core Features & Use Cases

  • Automated Build: Compiles your frontend application for production.
  • Cloudflare Deployment: Pushes your built application to Cloudflare Workers using the wrangler CLI.
  • Use Case: After making changes to your web application, you can use this Skill to quickly build and deploy the latest version to your live Cloudflare Workers environment.

Quick Start

Use the deploy skill to build and deploy the application to Cloudflare Workers.

Frequently Asked Questions about deploy

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

FAQPage Schema
How do I build and deploy a web application to Cloudflare Workers?

To build and deploy to Cloudflare Workers, you need to compile your frontend application for production and then push it to the serverless environment using the wrangler CLI. This process sequentially executes the npm build and deploy commands to automate the deployment pipeline.

What is the wrangler CLI used for in Cloudflare deployment?

The wrangler CLI is used to push your built application to Cloudflare Workers. It acts as the deployment tool that automates pushing your compiled frontend code to the live Cloudflare Workers serverless environment after the build step.

Do I need to run npm build commands before deploying to Cloudflare Workers?

Yes, you need to run npm build commands before deploying to Cloudflare Workers. The deployment process requires the npm build and deploy commands to be executed sequentially to ensure your frontend application is compiled for production before deployment.

Can I automate my Cloudflare Workers deployment pipeline?

You can automate your Cloudflare Workers deployment pipeline by sequentially executing the npm build and deploy commands. This automates frontend compilation and the subsequent push to the serverless environment using the wrangler CLI.

What are the limitations of using wrangler for Cloudflare Workers deployment?

A limitation of using wrangler for Cloudflare Workers deployment is that it requires npm build and deploy commands to be executed sequentially. The process is tailored for frontend compilation and subsequent serverless deployment, which may not fit all project architectures.