my-claude-code-setup is a starter configuration and memory-bank template for Claude Code, providing project guidance and reusable setup for Claude Code sessions. Developers use it to organize Claude Code behavior, memory, commands, skills, subagents, hooks, and settings. The catalogue entries are components of this Claude Code workflow.
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.
npx agentmods add skills/centminmod/my-claude-code-setup/ai-image-creatornpx skills add centminmod/my-claude-code-setup --skill ai-image-creatorgit clone --depth 1 https://github.com/centminmod/my-claude-code-setupWrote 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.
[](https://agentmods.dev/skills/centminmod/my-claude-code-setup/ai-image-creator)<a href="https://agentmods.dev/skills/centminmod/my-claude-code-setup/ai-image-creator"><img src="https://agentmods.dev/badge/skills/centminmod/my-claude-code-setup/ai-image-creator.svg" alt="Measured on agentmods" height="20"></a>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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00136 | $0.07379 |
| Opus 5 | $0.00068 | $0.03689 |
| Sonnet 5 | $0.00027 | $0.01476 |
| Haiku 4.5 | $0.00014 | $0.00738 |
Grade A, and why
ai-image-creator scanned grade A with 1 finding 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 6d ago.
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.
Makes network callslowCapability
Not a fault in itself. Listed so you know the mod talks to something, and to what.
For full API formats, response schemas, BYOK configuration, and curl examples: How it starts
The opening of the file, as written. The whole thing — 478 lines — stays where its author put it; the contents beside it link to each section on GitHub.
AI Image Creator
Generate PNG images via multiple AI models, routed through Cloudflare AI Gateway BYOK or directly via OpenRouter/Google AI Studio.
Model Selection
When the user mentions a model keyword in their image request, use the corresponding --model flag:
| Keyword | Model | Use When User Says |
|---|---|---|
gemini |
Google Gemini 3.1 Flash (default) | "gemini", "generate an image" (no model specified) |
geminipro |
Google Gemini 3 Pro | "geminipro", "gemini pro", "use gemini pro" |
riverflow |
Sourceful Riverflow v2 Pro | "riverflow", "use riverflow" |
flux2 |
FLUX.2 Max | "flux2", "flux", "use flux" |
seedream |
ByteDance SeedDream 4.5 | "seedream", "use seedream" |
gpt5 |
OpenAI GPT-5 Image | "gpt5", "gpt5 image", "use gpt5" |
gpt5.4 |
OpenAI GPT-5.4 Image 2 | "gpt5.4", "gpt-5.4 image", "use gpt5.4" |
Instructions
Routing check: If the user asks to describe, analyze, or explain an existing image (not generate a new one), skip directly to the Image Analysis (
--analyze) section below. No prompt enhancement or output path needed.Video routing: If the user asks to describe, analyze, or explain a video (or wants a text description of a clip to seed/extend a video prompt), skip directly to the Video Analysis (
--analyze-video) section below.
Step 1: Write Prompt
For long or complex prompts (recommended), write to ${CLAUDE_SKILL_DIR}/tmp/prompt.txt using the Write tool:
Write prompt text to ${CLAUDE_SKILL_DIR}/tmp/prompt.txt
For short prompts (under 200 chars, no special characters), pass inline via --prompt.
What ships with it
11 files 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.
- references/analyze-reference.md 3.4 KB
- references/api-reference.md 7.9 KB
- references/composite-reference.md 7.8 KB
- references/consistency-presets.md 5.2 KB
- references/prompt-categories.md 13 KB
- references/prompt-core.md 7.0 KB
- references/prompt-platforms.md 5.2 KB
- references/setup-guide.md 6.6 KB
- scripts/composite-banners.py 34 KB runs code
- scripts/generate-image.py 96 KB runs code
- tmp/.gitkeep 0 B
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.
- 6d ago First seen · 478 lines · 136 tokens per session scan A 12d0696dc5df
ai-image-creator is a skill published in the GitHub repository centminmod/my-claude-code-setup (2,620 stars, last pushed 3d ago), licensed MIT. It adds 136 tokens to every session and 7,379 once invoked, about $0.0007 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other skills, from other repositories
memory-bank
Token-efficient persistent memory system for Claude Code that saves 67% tokens on session warm-up (verified with tiktoken). Layered architecture with progressive loading, compact encoding, branch-aware context, smart compression, session diffing, conflict detection, session continuation protocol, and recovery mode.…
chatkit-integration
Foundation skill for integrating OpenAI ChatKit framework with custom backends. This skill should be used for initial ChatKit setup including server implementation, React component integration, authentication, context injection, and database persistence. For streaming UI patterns use chatkit-streaming. For interactive…
chatkit-actions
Implements interactive widget actions and bidirectional communication patterns for ChatKit. This skill should be used when building AI-driven interactive UIs with buttons, forms, entity tagging (@mentions), composer tools, and server-handled widget actions. Covers the full widget lifecycle from creation to replacement.
shadcn-ui
Build beautiful, accessible UIs with shadcn/ui components. Use this skill when creating forms, dialogs, tables, sidebars, or any UI components in Next.js. Covers installation, component patterns, react-hook-form integration with Zod validation, and dark mode setup.
sqlmodel-database
Design and implement database schemas using SQLModel with sync and async patterns. Use this skill when creating database models, setting up Neon PostgreSQL connections, defining relationships (one-to-many, many-to-many), implementing FastAPI dependency injection, or migrating schemas. Covers both sync Session and…
multi-agent-patterns
Design multi-agent architectures for complex tasks. Use when single-agent context limits are exceeded, when tasks decompose naturally into subtasks, or when specializing agents improves quality.