skills$openclaw/cloudflare-gen
lxgicstudios8.1k

by lxgicstudios

cloudflare-gen – OpenClaw Skill

cloudflare-gen is an OpenClaw Skills integration for coding workflows. Generate Cloudflare Workers configuration and code. Use when building on the edge.

8.1k stars733 forksSecurity L1
Updated Feb 7, 2026Created Feb 7, 2026coding

Skill Snapshot

namecloudflare-gen
descriptionGenerate Cloudflare Workers configuration and code. Use when building on the edge. OpenClaw Skills integration.
ownerlxgicstudios
repositorylxgicstudios/cloudflare-gen
languageMarkdown
licenseMIT
topics
securityL1
installopenclaw add @lxgicstudios/cloudflare-gen
last updatedFeb 7, 2026

Maintainer

lxgicstudios

lxgicstudios

Maintains cloudflare-gen in the OpenClaw Skills directory.

View GitHub profile
File Explorer
9 files
.
src
cli.ts
667 B
index.ts
724 B
_meta.json
286 B
package-lock.json
30.2 KB
package.json
644 B
README.md
256 B
SKILL.md
2.3 KB
tsconfig.json
251 B
SKILL.md

name: cloudflare-gen description: Generate Cloudflare Workers configuration and code. Use when building on the edge.

Cloudflare Gen

Cloudflare Workers are powerful but wrangler.toml syntax is its own thing. This tool generates Worker code and configuration from plain English. Edge functions, KV storage, R2 buckets. All set up correctly.

One command. Zero config. Just works.

Quick Start

npx ai-cloudflare "API proxy with rate limiting"

What It Does

  • Generates wrangler.toml configuration
  • Creates Worker TypeScript/JavaScript code
  • Sets up KV namespaces and R2 bindings
  • Includes proper routing and middleware
  • Handles environment variables and secrets

Usage Examples

# Simple Worker
npx ai-cloudflare "redirect based on country"

# API with storage
npx ai-cloudflare "REST API with KV storage for user preferences"

# Edge caching
npx ai-cloudflare "cache API responses at the edge for 1 hour"

# Auth middleware
npx ai-cloudflare "JWT validation middleware for API routes"

Best Practices

  • Keep Workers small - Edge has size limits
  • Use KV for reads - KV is fast for reads, slow for writes
  • Handle errors - Edge errors are hard to debug, be explicit
  • Test locally - wrangler dev before deploying

When to Use This

  • Building serverless functions on Cloudflare
  • Need edge computing for latency-sensitive features
  • Setting up Cloudflare Pages with Workers
  • Learning Workers and want working examples

Part of the LXGIC Dev Toolkit

This is one of 110+ free developer tools built by LXGIC Studios. No paywalls, no sign-ups, no API keys on free tiers. Just tools that work.

Find more:

Requirements

No install needed. Just run with npx. Node.js 18+ recommended. Requires OPENAI_API_KEY environment variable.

export OPENAI_API_KEY=sk-...
npx ai-cloudflare --help

How It Works

Takes your description and generates both the Worker code and wrangler.toml configuration. Sets up proper bindings for KV, R2, or Durable Objects if needed. The code follows Cloudflare's patterns and handles common edge cases.

License

MIT. Free forever. Use it however you want.

README.md

ai-cloudflare

Generate Cloudflare Workers configuration and code

Install

npm install -g ai-cloudflare

Usage

npx ai-cloudflare "your description here"

Setup

export OPENAI_API_KEY=sk-...

License

MIT

Permissions & Security

Security level L1: Low-risk skills with minimal permissions. Review inputs and outputs before running in production.

Requirements

No install needed. Just run with npx. Node.js 18+ recommended. Requires OPENAI_API_KEY environment variable. ```bash export OPENAI_API_KEY=sk-... npx ai-cloudflare --help ```

FAQ

How do I install cloudflare-gen?

Run openclaw add @lxgicstudios/cloudflare-gen in your terminal. This installs cloudflare-gen into your OpenClaw Skills catalog.

Does this skill run locally or in the cloud?

OpenClaw Skills execute locally by default. Review the SKILL.md and permissions before running any skill.

Where can I verify the source code?

The source repository is available at https://github.com/openclaw/skills/tree/main/skills/lxgicstudios/cloudflare-gen. Review commits and README documentation before installing.