Now liveThe Skillselion MCP - thousands of ranked skills, loaded into your agent mid-task. No install.Get it →
merit-systems avatar

Media Generation

  • 25 installs
  • 3 repo stars
  • Updated March 7, 2026
  • merit-systems/x402scan-skills

Helps with ai & agent building tasks.

About

media-generation is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.

  • media-generation
  • AI & Agent Building
  • AI-coding skill

Media Generation by the numbers

  • 25 all-time installs (skills.sh)
  • Ranked #9,800 of 16,546 AI & Agent Building skills by installs in the Skillselion catalog
  • Data as of Aug 4, 2026 (Skillselion catalog sync)
npx skills add https://github.com/merit-systems/x402scan-skills --skill media-generation

Add your badge

Show developers this skill is listed on Skillselion. Paste this into your README.

Listed on Skillselion
Installs25
repo stars3
Last updatedMarch 7, 2026
Repositorymerit-systems/x402scan-skills

What it does

Helps with ai & agent building tasks.

Files

SKILL.mdMarkdownGitHub ↗

Media Generation with StableStudio

Generate images and videos via x402 payments at https://stablestudio.io.

Quick Reference

TaskEndpointCostTime
Image (default)/api/x402/nano-banana-pro/generate$0.13-0.24~10s
Image (budget)/api/x402/nano-banana/generate$0.039~5s
Video (default)/api/x402/veo-3.1/generate$1.60-3.201-2min
Video (budget)/api/x402/wan-2.5/t2v$0.34-1.022-5min
Image edit/api/x402/nano-banana-pro/edit$0.13-0.24~10s

Image Generation

Recommended: nano-banana-pro (best quality/cost)

x402.fetch(
  url="https://stablestudio.io/api/x402/nano-banana-pro/generate",
  method="POST",
  body={
    "prompt": "a cat wearing a space helmet, photorealistic",
    "aspectRatio": "16:9",
    "imageSize": "2K"
  }
)

Options:

  • aspectRatio: "1:1", "16:9", "9:16"
  • imageSize: "1K", "2K", "4K" (nano-banana-pro only)

Video Generation

Recommended: veo-3.1 (best quality/cost)

x402.fetch(
  url="https://stablestudio.io/api/x402/veo-3.1/generate",
  method="POST",
  body={
    "prompt": "a timelapse of clouds moving over mountains",
    "durationSeconds": "6",
    "aspectRatio": "16:9"
  }
)

Options:

  • durationSeconds: "4", "6", "8"
  • aspectRatio: "16:9", "9:16"

Job Polling

Generation returns a jobId. Poll until complete:

x402.fetch_with_auth(
  url="https://stablestudio.io/api/x402/jobs/{jobId}"
)

Poll images every 3s, videos every 10s. Result contains imageUrl or videoUrl.

Image Editing

Requires uploading the source image first. See rules/uploads.md.

x402.fetch(
  url="https://stablestudio.io/api/x402/nano-banana-pro/edit",
  method="POST",
  body={
    "prompt": "change the background to a beach sunset",
    "images": ["https://...blob-url..."]
  }
)

Model Comparison

ModelTypeBest For
nano-banana-proImageGeneral purpose, up to 4K
nano-bananaImageQuick drafts, budget
gpt-image-1.5ImageFast, variable quality
veo-3.1VideoHigh quality, 1080p
wan-2.5VideoBudget, text or image input
sora-2VideoPremium quality

Related skills

This week in AI coding

Five minutes, every Monday - the tools, releases and tactics for developers.

unsubscribe anytime.