What problem does it solve?
Deploying and managing full-stack apps on Cloudflare Pages typically requires juggling Git workflows, Direct Uploads, Wrangler CLI, and various Pages features. This skill consolidates those tasks into a single, repeatable process, reducing setup time and drift across projects.
Core Features & Use Cases
- Git-based deployments: automate preview and production deployments from version control.
- Direct Upload and Wrangler integration: publish prebuilt assets and configure build outputs with minimal commands.
- Pages Functions, bindings, and custom domains: wire serverless routes, data bindings (KV, R2, D1, etc.), and domain management for end-to-end hosting.
- Headers/Redirects and build configuration: manage routing and edge configurations to optimize delivery.
Use Case: You are releasing a new static site with serverless endpoints; use this Skill to deploy the app from a branch and expose development previews to stakeholders.
Quick Start
Use the Cloudflare Pages skill to bootstrap and deploy a project with Wrangler:
- Create a project: npx wrangler pages project create my-project
- Deploy to production: npx wrangler pages deploy ./dist
- Publish a preview: npx wrangler pages deploy ./dist --branch=feature-x