cf-image

cf-image is a skill for Claude Code from hassancs91/claude-image-generation. It costs 156 tokens per session (819 once invoked), scanned A, original, MIT.

A tool that creates an image from a written description using Cloudflare Workers AI and the FLUX image model. The generated image is saved as a local file.

In plain words
What is it for?
Creating illustrations, logos, icons, thumbnails, wallpapers, or banners from text prompts when the work is being done with Cloudflare or in the relevant repository.
Why use it?
It turns a text idea into a bitmap image without requiring the user to draw it or connect an image service manually.

Skill for Claude Code

Written for Claude Code: installed under .claude/. Also seen: reads .claude/ paths.

Good fit Creating illustrations, logos, icons, thumbnails, wallpapers, or banners from text prompts when the work is being done with Cloudflare or in the relevant repository.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/hassancs91/claude-image-generation/level-3-image-generator
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add hassancs91/claude-image-generation --skill level-3-image-generator
Clone the repo
git clone --depth 1 https://github.com/hassancs91/claude-image-generation

Made for: Claude Code.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for cf-image

README.md
[![agentmods](https://agentmods.dev/badge/skills/hassancs91/claude-image-generation/level-3-image-generator/github.svg)](https://agentmods.dev/skills/hassancs91/claude-image-generation/level-3-image-generator)
Your own site
<a href="https://agentmods.dev/skills/hassancs91/claude-image-generation/level-3-image-generator"><img src="https://agentmods.dev/badge/skills/hassancs91/claude-image-generation/level-3-image-generator/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for cf-image

Your own site · 80×15
<a href="https://agentmods.dev/skills/hassancs91/claude-image-generation/level-3-image-generator"><img src="https://agentmods.dev/badge/skills/hassancs91/claude-image-generation/level-3-image-generator.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 156 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 819 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00156 $0.00819
Opus 5 $0.00078 $0.00409
Sonnet 5 $0.00031 $0.00164
Haiku 4.5 $0.00016 $0.00082

Measured 11d ago against content hash 02b5181e8e7d, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-10, from the pricing page.

Security

Grade A, and why

cf-image scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 11d ago.

The scan reads SKILL.md. This mod also ships 1 executable file (generate.py), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

.claude/skills/level-3-image-generator/SKILL.md · 56 lines

How it starts

The opening of the file, as written. The whole thing — 56 lines — stays where its author put it; the contents beside it link to each section on GitHub.

cf-image

Turn a natural-language request into a generated image using Cloudflare Workers AI (@cf/black-forest-labs/flux-1-schnell). This skill is the "connect Claude to image generation" loop: the user describes what they want, Claude does the prompt engineering, the bundled script calls the Cloudflare API, and the image is saved locally.

When this skill applies

The user wants an image generated from a description — e.g. "generate a logo idea for a coffee shop", "make a thumbnail for my AI video", "picture of a cyberpunk cat". Claude is responsible for turning a vague ask into a good prompt before generating.

It does not apply to: editing an existing image, vector/SVG art, or video.

How to run it

From the repo root:

python .claude/skills/level-3-image-generator/generate.py "<optimized prompt>" -o <filename>.jpg
  • "<optimized prompt>" — the prompt you write (see below), not the user's raw words.
  • -o / --output — where to save (default out.jpg). Pick a short descriptive name, e.g. coffee-logo.jpg.
  • --steps — diffusion steps (default 4). flux-schnell is tuned for few steps; 4–8 is plenty. Higher is slower, not always better.

The script prints Saved <file> ... on success, or a Cloudflare API error message on failure.

The one job Claude must do: write a strong prompt

The raw script would need a hand-written prompt. The value of this skill is that Claude expands the user's intent into a vivid, specific prompt before calling the script. A good Flux prompt names:

  • Subject — what's in the frame, concretely.
  • Style/medium — photo, 3D render, flat vector, watercolor, isometric, etc.
  • Composition & framing — close-up, wide shot, centered, rule-of-thirds.
  • Lighting & mood — golden hour, neon, soft studio light, dramatic shadows.
  • Color/detail cues — palette, background, level of detail.

Example transformation:

  • User: "a logo for a coffee shop"
  • Prompt you pass: "minimalist logo of a steaming coffee cup, flat vector illustration, warm brown and cream palette, centered on a clean off-white background, simple bold shapes, modern branding"

Read the full file on GitHub · 56 lines

Files

What ships with it

1 file beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 11d ago First seen · 56 lines · 156 tokens per session scan A 02b5181e8e7d

Subscribe to this mod's changes

cf-image is a skill published in the GitHub repository hassancs91/claude-image-generation (91 stars, last pushed 23d ago), licensed MIT. It adds 156 tokens to every session and 819 once invoked, about $0.0008 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

imagegen

Use when the user asks to generate or edit images via the OpenAI Image API (for example: generate image, edit/inpaint/mask, background removal or replacement, transparent background, product shots, concept art, covers, or batch variants); run the bundled CLI (${SELENESKILLROOT}/scripts/imagegen.py) and require…

tercumantanumut/selene · 81 tokens

sora

Use when the user asks to generate, remix, poll, list, download, or delete Sora videos via OpenAI’s video API using the bundled CLI (${SELENESKILLROOT}/scripts/sora.py), including requests like “generate AI video,” “Sora,” “video remix,” “download video/thumbnail/spritesheet,” and batch video generation; requires…

tercumantanumut/selene · 91 tokens

speech

Use when the user asks for text-to-speech narration or voiceover, accessibility reads, audio prompts, or batch speech generation via the OpenAI Audio API; run the bundled CLI (${SELENESKILLROOT}/scripts/texttospeech.py) with built-in voices and require OPENAIAPIKEY for live calls. Custom voice creation is out of scope.

tercumantanumut/selene · 77 tokens

app-mockup

Create deterministic browser, tablet, laptop, and phone mockups from real screenshots via the local TypeScript renderer in this plugin. Use for marketing visuals, store screenshots, and framed UI previews without ML image generation.

tercumantanumut/selene · 47 tokens

transcribe

Transcribe audio files to text with optional diarization and known-speaker hints. Use when a user asks to transcribe speech from audio/video, extract text from recordings, or label speakers in interviews or meetings.

tercumantanumut/selene · 45 tokens

dig-for-discogs

Use DIG's read-only Discogs workflows to search the catalogue or an authenticated collection, inspect releases and masters, compare pressings, rank sonic/collector/value evidence, summarize collection taste, inspect an own wantlist, and request collection-aware recommendations. Trigger for Discogs release IDs…

WOIII-me/Discogs-MCP · 106 tokens