videoagent-image-studio

videoagent-image-studio is a skill for Claude Code from pexoai/pexo-skills. It costs 53 tokens per session (1,875 once invoked), scanned A, original, MIT.

An image-generation skill that provides one-command access to several AI image models, including Midjourney, Flux, Ideogram, Recraft, SDXL, and Nano Banana.

In plain words
What is it for?
Use it to create photos, illustrations, icons, logos, posters, vector artwork, anime-style images, or other artwork from a prompt.
Why use it?
It removes the need to manage separate image services and their API keys or handle model-specific details such as waiting for an asynchronous result.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin. Also seen: built for openclaw.

Part of the pexo plugin — 7 skills shipped together

not rated 777repo +2 21d ago A scan Socket: passSnyk: passSkillSpector: pass 53 tokens original MIT

Good fit Use it to create photos, illustrations, icons, logos, posters, vector artwork, anime-style images, or other artwork from a prompt.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/pexoai/pexo-skills/videoagent-image-studio
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 pexoai/pexo-skills --skill videoagent-image-studio
Clone the repo
git clone --depth 1 https://github.com/pexoai/pexo-skills

Made for: Claude Code.

Or install pexo, the plugin that ships this one along with the rest of its 7 skills.

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 videoagent-image-studio

README.md
[![agentmods](https://agentmods.dev/badge/skills/pexoai/pexo-skills/videoagent-image-studio/github.svg)](https://agentmods.dev/skills/pexoai/pexo-skills/videoagent-image-studio)
Your own site
<a href="https://agentmods.dev/skills/pexoai/pexo-skills/videoagent-image-studio"><img src="https://agentmods.dev/badge/skills/pexoai/pexo-skills/videoagent-image-studio/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 videoagent-image-studio

Your own site · 80×15
<a href="https://agentmods.dev/skills/pexoai/pexo-skills/videoagent-image-studio"><img src="https://agentmods.dev/badge/skills/pexoai/pexo-skills/videoagent-image-studio.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 53 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,875 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
  • Socket pass 18 Mar 2026
  • Snyk pass 6 Mar 2026
  • 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.00053 $0.01875
Opus 5 $0.00026 $0.00937
Sonnet 5 $0.00011 $0.00375
Haiku 4.5 $0.00005 $0.00187

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

Security

Grade A, and why

videoagent-image-studio 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 (tools/generate.js), 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.

skills/videoagent-image-studio/SKILL.md · 235 lines

How it starts

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

🎨 VideoAgent Image Studio

Use when: User asks to generate, draw, create, or make any kind of image, photo, illustration, icon, logo, or artwork.

Generate images with 8 state-of-the-art AI models. This skill automatically picks the best model for the job and handles all the complexity — including Midjourney's async polling — so you can focus on the conversation.


Quick Reference

User Intent Model Speed
Artistic, cinematic, painterly midjourney ~15s
Photorealistic, portrait, product flux-pro ~8s
General purpose, balanced flux-dev ~10s
Quick draft, fast iteration flux-schnell ~2s
Image with text, logo, poster ideogram ~10s
Vector art, icon, flat design recraft ~8s
Anime, stylized illustration sdxl ~5s
Gemini-powered, consistent style nano-banana ~12s

How to Generate an Image

Step 1 — Enhance the prompt

Before calling the script, expand the user's prompt with style, lighting, and quality descriptors appropriate for the chosen model.

  • Midjourney: Add cinematic lighting, ultra detailed, --v 7, --style raw
  • Flux: Add masterpiece, highly detailed, sharp focus, professional photography
  • Ideogram: Be explicit about text content, font style, and layout
  • Recraft: Specify vector illustration, flat design, icon style

Step 2 — Run the script

node {baseDir}/tools/generate.js \
  --model <model_id> \
  --prompt "<enhanced prompt>" \
  --aspect-ratio <ratio>

All parameters:

Parameter Default Description
--model flux-dev Model ID from the table above
--prompt (required) The image generation prompt
--aspect-ratio 1:1 1:1, 16:9, 9:16, 4:3, 3:4, 3:2, 21:9
--num-images 1 Number of images (1–4; Midjourney always returns 4)
--negative-prompt Things to avoid (not supported by Midjourney)
--seed Seed for reproducibility

Read the full file on GitHub · 235 lines

Files

What ships with it

5 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.

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 · 235 lines · 53 tokens per session scan A b2942bd67a8e

Subscribe to this mod's changes

videoagent-image-studio is a skill published in the GitHub repository pexoai/pexo-skills (777 stars, last pushed 21d ago), licensed MIT. It adds 53 tokens to every session and 1,875 once invoked, about $0.0003 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.