From iamzhihuix-happy-claude-skills
Generates still images via 8 providers (OpenAI, Google, Replicate, Stability, FAL, Ark, Bailian, SiliconFlow) through a single CLI. Supports text-to-image and image-to-image workflows.
How this skill is triggered — by the user, by Claude, or both
Slash command
/iamzhihuix-happy-claude-skills:happy-image-genThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Generates still images across 8 providers through one CLI: `bun scripts/main.ts ...`. The same CLI handles text-to-image and image-to-image (reference-driven) edits.
assets/EXTEND.template.mdpackage.jsonreferences/aspect_ratio_map.mdreferences/config/extend-schema.mdreferences/config/first-time-setup.mdreferences/error_codes.mdreferences/providers.mdscripts/main.tsscripts/providers/ark.tsscripts/providers/bailian.tsscripts/providers/fal.tsscripts/providers/google.tsscripts/providers/openai.tsscripts/providers/replicate.tsscripts/providers/siliconflow.tsscripts/providers/stability.tsscripts/types.tsscripts/utils/aspect_ratio.tsscripts/utils/output.tsGenerates still images across 8 providers through one CLI: bun scripts/main.ts .... The same CLI handles text-to-image and image-to-image (reference-driven) edits.
bun scripts/main.ts --prompt "A calico cat on green grass, cinematic light" --ar 16:9 --image ./out.png
Invoke this skill whenever the user:
Route to happy-dreamina instead when the user explicitly names 即梦, Jimeng, or the dreamina CLI.
Run these checks:
Locate EXTEND.md config. Check in order:
./.happy-skills/happy-image-gen/EXTEND.md (project)$XDG_CONFIG_HOME/happy-skills/happy-image-gen/EXTEND.md~/.happy-skills/happy-image-gen/EXTEND.md (user)If none exist, run bun scripts/main.ts --setup and follow references/config/first-time-setup.md to create one. Do not proceed to generation until the user has at least one provider configured.
Verify a provider is usable. Confirm either an env var is set (e.g., OPENAI_API_KEY) or EXTEND.md references an api_key_env / api_key_source that resolves. If nothing resolves, loop back to setup.
Verify Bun is available. Run command -v bun. If missing, fall back to npx -y bun scripts/main.ts ....
Pick in this order of preference:
--provider <id> explicitly passed by the user.default_provider in EXTEND.md.openai → google → replicate → stability → fal → ark → bailian → siliconflow.See references/providers.md for each provider's required env vars, default models, and strengths (e.g., prefer google for text-in-image, replicate for Flux-family photorealism, ark for Chinese text fidelity).
--prompt: the user's full request, trimmed. Always double-quote.--ar: aspect ratio — 1:1 / 16:9 / 9:16 / 3:4 / 4:3. See references/aspect_ratio_map.md for how each provider interprets this.--quality: draft (fastest + cheapest), hd (default), or ultra (4K-class, slower).--ref <path>: repeat for multiple reference images. Not every provider supports this — see providers.md.--model: override the default model for the chosen provider. Omit unless the user asked for a specific one.--image <path>: REQUIRED — output file path. Use a descriptive name (e.g., ./out/hero-landscape.png).bun scripts/main.ts \
--prompt "..." \
--image ./out.png \
--provider openai \
--ar 1:1 \
--quality hd
On success the CLI prints the resolved absolute path and byte count. In --json mode it emits:
{ "success": true, "provider": "openai", "model": "gpt-image-1", "image": "/abs/path.png", "size_bytes": 1416341, "format": "png" }
Echo the path back to the user.
config: No provider selected ... — no API key in env and no EXTEND.md. Loop back to Step 0.[openai] OpenAI images API 401 ... — key invalid or expired. Ask the user to refresh it.[openai] ... 400 ... content_policy_violation — prompt blocked. Show the raw error to the user; do not paraphrase.provider so the user knows what to check.See references/error_codes.md for a per-provider error table.
Read on demand:
references/providers.md — all 8 providers, required env vars, default models, strengths.references/aspect_ratio_map.md — how each provider interprets --ar.references/error_codes.md — common errors per provider and fixes.references/config/first-time-setup.md — step-by-step for --setup.references/config/extend-schema.md — EXTEND.md schema reference.Template for EXTEND.md: assets/EXTEND.template.md.
npx claudepluginhub iamzhihuix/happy-claude-skillsAI image generation via OpenAI, Azure, Google, OpenRouter, DashScope, Z.AI, MiniMax, Jimeng, Seedream, and Replicate APIs. Supports text-to-image, reference images, aspect ratios, and batch generation from saved prompts.
Generates images via multiple AI APIs (OpenAI, Azure, Google, OpenRouter, DashScope, Z.AI, MiniMax, Jimeng, Seedream, Replicate, Agnes). Supports text-to-image, reference images, aspect ratios, batch generation. Activates on image generation requests.
Generates images via OpenAI, Google, DashScope, and Canghe APIs. Supports text-to-image, reference images, aspect ratios, and quality control. Useful when users request image creation.