by Cripacx
AI image and video generation skill for Claude Code and other coding agents — Gemini, OpenAI and Kie AI behind one CLI and MCP server, with EU AI Act content marking.
# Add to your Claude Code skills
git clone https://github.com/Cripacx/mediagenmediagen is an open-source ai agents skill for AI coding assistants such as Claude Code, Codex CLI, and ChatGPT, built by Cripacx. AI image and video generation skill for Claude Code and other coding agents — Gemini, OpenAI and Kie AI behind one CLI and MCP server, with EU AI Act content marking. It has 55 GitHub stars.
mediagen's catalog security scan is still queued. You can run an instant dependency and prompt-injection check now with the "Scan for vulnerabilities" button above.
Clone the repository with "git clone https://github.com/Cripacx/mediagen" and add it to your Claude Code skills directory (see the Installation section above).
mediagen is primarily written in TypeScript. It is open-source under Cripacx on GitHub, so you can review or fork the full source.
Yes. SkillsLLM lists many other AI Agents skills you can browse and compare side by side. Open the AI Agents category from the badge at the top of this page, or use the Related Skills and comparison links further down to weigh mediagen against similar tools.
No comments yet. Be the first to share your thoughts!
Unlocks once the catalog security scan passes (runs nightly).
⚠️ Third-Party Software Notice
This skill is third-party open-source software developed and hosted independently on GitHub. SkillsLLM is an informational directory and does not control or maintain the underlying repository.
Any security checks, ratings, or warnings displayed by SkillsLLM are automated and limited in scope. They do not constitute a security certification or guarantee that the software is safe, error-free, or free from malicious code, vulnerabilities, compromised dependencies, or prompt-injection risks.
Review the source code, permissions, dependencies, and configuration before installing or running any third-party skill. Use is at your own risk. To the maximum extent permitted by applicable law, SkillsLLM is not liable for losses arising from third-party software.
The deep catalog scan for this skill is still queued. Run an instant dependency check now instead.
Give your agent image and video generation across Google Gemini, OpenAI and Kie AI — one skill, one install, no API to learn.
Say roughly what you want and let it decide the rest:
You: Make a hero image for the landing page, wide, something moody and industrial.
Agent: npx -y mediagen image "A disused loading dock at dusk, wet concrete…"
--aspect-ratio 21:9 --json
→ ./output/image-20260823T094107Z.png
It wrote the prompt out in full, knew 21:9 rules OpenAI out, and read the path
back from --json.
Or be exact, and it stops deciding:
You: Same thing with gemini-3-pro-image, 21:9, 4K, marked as AI-generated,
saved as hero.png.
Agent: npx -y mediagen image "A disused loading dock at dusk, wet concrete…"
--model gemini-3-pro-image --aspect-ratio 21:9 --size 4K
--output-name hero.png --json
→ ./output/hero.jpg
[looks at the image]
npx -y mediagen mark ./output/hero.jpg --visible-label
--label-position top-right --json
→ ./output/hero.labelled.jpg
It marked in a second pass, after seeing where the subject ended up — and put the label on the flat roofline rather than over the loading bay.
Anything the CLI takes can be asked for in words — provider, model, aspect ratio, size, output name and directory, quality preset, video duration, an input image to edit, and whether to mark the result. Name any of them and the agent uses it as given; leave it out and it chooses, or falls back to what you configured.
npx -y skills add Cripacx/mediagen --skill mediagen
That is the whole installation. Nothing else to set up — the skill runs the
CLI through npx, which fetches it on first use and caches it afterwards.
Then give it a key:
npx -y mediagen init
An interactive wizard: pick providers, enter each key without it being echoed, verify each against the live API, choose a model per provider, and set a default. One key is enough to start.
Now just ask your agent for an image.
mediagen models is
there when you want to see what is available before choosingAnd what it will not do: ask you to paste an API key into the chat. On a
configuration error the skill tells you to run mediagen init in your own
terminal.
mediagen init covers first-time setup. To change something later:
npx -y mediagen config edit
A menu of every setting with its current value and where that value came from —
provider, model, key, output directory, quality preset, and what mediagen mark does by default. Each change is written as you make it.
For CI and scripts, where there is no terminal, config set takes the same
settings as arguments:
echo "$GEMINI_API_KEY" | npx -y mediagen config set gemini --stdin
npx -y mediagen config set gemini-model gemini-3-pro-image
Set the order you prefer, most preferred first:
npx -y mediagen config set provider-priority gemini,kie,openai
It is a preference, not a whitelist. A request with no --provider goes to the
first provider in the order that has a key and can do the job — so a
missing OpenAI key never stops something Gemini can do, and asking for video
skips straight past the providers that do not make any. Naming --provider
overrides all of it.
mediagen models shows the resulting order, which providers are usable, and
what a request would get:
1. Google Gemini (gemini) [preferred, key from config file]
Would use: gemini-3.1-flash-image (provider default)
2. Kie AI (kie) [key from config file]
3. OpenAI (openai) [preferred, no key]
No key configured, so requests to it fail. Fix: mediagen config set openai
A request with no --provider uses gemini/gemini-3.1-flash-image.
With --json it adds wouldUse, usableProviders and providerPriority.
That is what the skill has an agent read before generating, so it never picks
a model from a provider you have no key for.
To check what is configured and whether the keys still work:
npx -y mediagen doctor
doctor reports, per provider, whether a key is configured, which layer it came
from, and whether the provider accepts it — keeping not configured,
rejected, unreachable and no cheap way to check distinct, because they
call for four different fixes.
[!WARNING] There is deliberately no flag that takes an API key as an argument. Arguments land in shell history and in the process list, where they outlive the command that used them.
Settings resolve from the environment first, then .env in the working
directory, then the config file:
| Variable | Purpose |
|---|---|
GEMINI_API_KEY, OPENAI_API_KEY, KIE_API_KEY |
credentials; at least one |
MEDIAGEN_PROVIDER_PRIORITY |
providers in preference order |
GEMINI_MODEL, OPENAI_MODEL, KIE_MODEL |
default model per provider |
MEDIAGEN_OUTPUT_DIR |
where media is saved |
MEDIAGEN_QUALITY |
fast, balanced, quality |
MEDIAGEN_MARK |
mark output by default |
MEDIAGEN_VISIBLE_LABEL |
add a visible label by default |
[!TIP] A stale environment variable shadowing the key you just configured is the most expensive failure this kind of tool has.
mediagen config listmarks every shadowed value, so you can see it rather than guess.
| Provider | Images | Video | Editing | Key verification |
|---|---|---|---|---|
| Google Gemini | Nano Banana family, up to 4K | yes | yes | live probe |
| OpenAI | gpt-image family, DALL·E | — | yes | live probe |
| Kie AI | ~30 models: Flux, Imagen, Grok | — | most | no cheap probe; reported as such |
[!NOTE] OpenAI takes pixel dimensions rather than aspect ratios and genuinely cannot produce 16:9 — its widest image is 1536×1024, which is 3:2. Asking for 16:9 is refused by name rather than quietly served as something else. The skill knows this and routes wide shapes to Gemini.
A model absent from the listings is still sent to the provider, so a newly released model works before mediagen knows about it. Kie's catalogue is generated from Kie's own documentation rather than maintained by hand.
The EU AI Act splits disclosure into two duties, so mediagen mark has two
independent switches:
| Flag | Duty | What it does |
|---|---|---|
| machine-readable | make it findable by tools | writes IPTC/XMP DigitalSourceType, on by default |
--visible-label |
disclose it to people | composites the EU's official AI-content label |
Generating never marks. Marking is always a second command, run on the file afterwards:
npx -y mediagen image "a wide banner" --aspect-ratio 21:9 --size 2K --json
npx -y mediagen mark ./output/image-….jpg --visible-label --label-position top-left
That is not ceremony. A visible label has to go where the subject is not, and only the finished image can say where that is. The machine-readable marker is not free either: adding metadata to a JPEG or WebP means decoding and re-encoding it, so marking costs a second lossy pass — worth paying deliberately, not as a side effect of asking for an image. mediagen re-encodes at high quality to keep that cost small, but it cannot make it zero.
To have mediagen mark draw the visible label without being asked each time:
npx -y mediagen config edit # "AI marking by default"
A configured default is still overridable per run with --no-mark or
--no-visible-label.
The visible label is the European Commission's own icon, published with the Code of Practice on Transparency of AI-generated Content and free