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.
npx claudepluginhub nsheaps/ai-mktpl --plugin cloudflareThis skill uses the workspace's default tool permissions.
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.
Searches, retrieves, and installs Agent Skills from prompts.chat registry using MCP tools like search_skills and get_skill. Activates for finding skills, browsing catalogs, or extending Claude.
Searches prompts.chat for AI prompt templates by keyword or category, retrieves by ID with variable handling, and improves prompts via AI. Use for discovering or enhancing prompts.
Guides agent creation for Claude Code plugins with file templates, frontmatter specs (name, description, model), triggering examples, system prompts, and best practices.
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 "file=@photo.jpg" \
-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 |