From cloudflare
Use this skill when the user asks about Cloudflare Images, image optimization, image resizing, image storage and delivery, or managing Images with Pulumi.
How this skill is triggered — by the user, by Claude, or both
Slash command
/cloudflare:imagesThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Cloudflare Images provides image storage, optimization, and delivery at the edge. It includes on-the-fly resizing, format conversion (WebP/AVIF), and variant-based transformations.
Cloudflare Images provides image storage, optimization, and delivery at the edge. It includes on-the-fly resizing, format conversion (WebP/AVIF), and variant-based transformations.
Transform images from any origin with URL parameters:
https://example.com/cdn-cgi/image/width=300,height=200,fit=crop/path/to/image.jpg
Parameters: width, height, fit, quality, format, blur, rotate, sharpen
curl -X POST "https://api.cloudflare.com/client/v4/accounts/{account_id}/images/v1" \
-H "Authorization: Bearer $CF_API_TOKEN" \
-F "[email protected]" \
-F 'metadata={"key":"value"}'
Cloudflare Images is managed via API and dashboard. Pulumi does not have a dedicated Images resource, but you can enable image resizing on a zone:
// Image resizing is a zone-level setting
// Managed via Cloudflare dashboard or API
// No dedicated Pulumi resource currently exists
| Feature | Cost |
|---|---|
| Storage | $5.00/100K images/month |
| Delivery | $1.00/100K images served |
| Transformations | Included with delivery |
npx claudepluginhub nsheaps/ai-mktpl --plugin cloudflareUploads, transforms, and serves images via Cloudflare Images API. Covers direct creator upload, signed URLs, webhooks, CORS, and integrations with Next.js/Remix.
Guides using Netlify Image CDN for on-the-fly image optimization and transformation. Covers query parameters, remote image allowlisting, clean URL rewrites, and upload pipelines with Functions + Blobs.
Handles file uploads and cloud storage (S3, Cloudflare R2) with presigned URLs, multipart uploads, and image optimization. For large files without blocking.