← ClaudeAtlas

cloudflare-fullstack-opslisted

Use when deploying, configuring, or managing Cloudflare full-stack edge infrastructure including Pages, Workers, D1 SQL databases, R2 object storage, KV, and DNS routing.
shali10/awesome-agent-skills · ★ 0 · AI & Automation · score 76
Install: claude install-skill shali10/awesome-agent-skills
# Cloudflare Full-Stack Edge Infrastructure Operations ## Overview A complete operational guide and automation toolkit for managing Cloudflare edge resources. It covers continuous deployment on **Cloudflare Pages, serverless compute via Workers, serverless relational storage with D1, S3-compatible asset hosting on R2, low-latency KV, and programmatic DNS management**. ## When to Use & When NOT to Use ### When to Use - Deploying frontend SPAs / SSG sites to Cloudflare Pages with zero server maintenance. - Setting up Hono/TypeScript backend microservices on Cloudflare Workers. - Managing D1 SQLite schemas, migrations, and full-text search (FTS5). - Configuring R2 custom domains, CORS, and S3-compatible access tokens. - Automating DNS records, SSL/TLS encryption modes, and WAF security rules. ### When NOT to Use - Traditional bare-metal or long-running Stateful TCP server orchestration. - Deploying complex containerized Kubernetes workloads (use standard Docker/K8s tools). ## Core CLI Workflows (Wrangler & API) ```bash # 1. Cloudflare Pages Deployment npx wrangler pages deploy ./dist --project-name my-portal # 2. Cloudflare D1 Database Migrations npx wrangler d1 execute my-database --command "CREATE TABLE IF NOT EXISTS posts (id INTEGER PRIMARY KEY, title TEXT);" npx wrangler d1 execute my-database --file=./schema.sql # 3. Cloudflare R2 Bucket Management npx wrangler r2 bucket create my-assets-bucket npx wrangler r2 object put my-assets-bucket/logo.png --file=./logo.png