kie-ai

kie-ai is a skill for Claude Code, Codex from Buzzmatic/awesome-agent-skills. It costs 89 tokens per session (1,534 once invoked), scanned A, original, MIT.

A single API interface for generating videos, music, and images through several media-generation services. It includes scripts for creating media, modifying videos, removing vocals, generating lyrics, uploading files, checking credits, and running batches.

In plain words
What is it for?
Use it to generate video, music, or images from prompts, upload source files, create batches from a configuration, check account credits, and perform supported audio or video transformations.
Why use it?
It gives these different media tasks a common setup and workflow instead of requiring separate integrations for each service. Long-running jobs can be polled until they finish.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it to generate video, music, or images from prompts, upload source files, create batches from a configuration, check account credits, and perform supported audio or video transformations.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/buzzmatic/awesome-agent-skills/kie-ai
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 Buzzmatic/awesome-agent-skills --skill kie-ai
Clone the repo
git clone --depth 1 https://github.com/Buzzmatic/awesome-agent-skills

Made for: Claude Code, Codex.

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 kie-ai

README.md
[![agentmods](https://agentmods.dev/badge/skills/buzzmatic/awesome-agent-skills/kie-ai/github.svg)](https://agentmods.dev/skills/buzzmatic/awesome-agent-skills/kie-ai)
Your own site
<a href="https://agentmods.dev/skills/buzzmatic/awesome-agent-skills/kie-ai"><img src="https://agentmods.dev/badge/skills/buzzmatic/awesome-agent-skills/kie-ai/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 kie-ai

Your own site · 80×15
<a href="https://agentmods.dev/skills/buzzmatic/awesome-agent-skills/kie-ai"><img src="https://agentmods.dev/badge/skills/buzzmatic/awesome-agent-skills/kie-ai.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 89 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,534 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.
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.00089 $0.01534
Opus 5 $0.00044 $0.00767
Sonnet 5 $0.00018 $0.00307
Haiku 4.5 $0.00009 $0.00153

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

Security

Grade A, and why

kie-ai 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 28 executable files (scripts/audio/suno_extend.py, scripts/audio/suno_generate.py, scripts/audio/suno_lyrics.py, …), 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/kie-ai/SKILL.md · 181 lines

How it starts

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

kie.ai Media Generation

Generate video, audio, and images using kie.ai's unified API for Veo3.1, Runway, Luma, Suno, GPT-4o, and Flux Kontext.

Environment Setup

export KIE_AI_API_KEY="your_api_key"
export KIE_AI_POLL_INTERVAL=5      # Optional: seconds between polls (default: 5)
export KIE_AI_MAX_POLL_ATTEMPTS=120 # Optional: max poll attempts (default: 120)

Quick Reference

Task Script Key Params
Generate video video/veo_generate.py --prompt, --model veo3|veo3_fast
Generate music audio/suno_generate.py --prompt, --model V4_5, --style
Generate image image/gpt4o_generate.py --prompt, --size, --variants
Flux image image/flux_generate.py --prompt, --model flux-kontext-pro
Upload file upload/upload_base64.py --file
Check credits common/get_credits.py
Bulk generate bulk/bulk_generate.py --config, --batch-size

Video Generation

Veo3.1 (Google)

python skills/kie-ai/scripts/video/veo_generate.py \
  --prompt "A cat playing piano in a jazz club" \
  --model veo3 \
  --aspect-ratio "16:9"

Options: --model veo3|veo3_fast, --aspect-ratio, --image-urls, --get-hd, --no-poll

Runway

python skills/kie-ai/scripts/video/runway_generate.py \
  --prompt "Drone shot over mountain peaks at sunrise" \
  --duration 10 \
  --quality 1080p

Options: --duration 5|10, --quality 720p|1080p, --aspect-ratio, --image-url

Extend: python skills/kie-ai/scripts/video/runway_extend.py --task-id TASK_ID

Luma (Video Modification)

python skills/kie-ai/scripts/video/luma_modify.py \
  --prompt "Add lens flare and cinematic color grading" \
  --video-url "https://..."

Audio Generation (Suno)

Generate Music

python skills/kie-ai/scripts/audio/suno_generate.py \
  --prompt "Upbeat jazz with piano and saxophone" \
  --model V4_5 \
  --style "jazz, piano, upbeat"

Read the full file on GitHub · 181 lines

Files

What ships with it

30 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 · 181 lines · 89 tokens per session scan A 60f9f5aa982a

Subscribe to this mod's changes

kie-ai is a skill published in the GitHub repository Buzzmatic/awesome-agent-skills (1 stars, last pushed 2mo ago), licensed MIT. It adds 89 tokens to every session and 1,534 once invoked, about $0.0004 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-31.

Related

Other skills, from other repositories

webgl-holographic-foil

A self-contained WebGL2 hero: thin-film interference over a crushed-foil surface whose palette shifts with the viewing angle; move the cursor to tilt the film.

nexu-io/open-design · 41 tokens

general-video

Author or edit a custom HyperFrames composition when no specialized workflow fits, or when BRIEF.md sets flow: companion. Use for longer or multi-scene pieces, brand and sizzle reels, montages, static loops, static title cards, footage remixes, and freeform builds. Use motion-graphics instead for a short unnarrated…

heygen-com/hyperframes · 92 tokens

html-ppt-hermes-cyber-terminal

OpenDesign + BYOK: choosing and wiring your own model, hands-on — cost, quality, and the routing decision. Built as a decision-grade AI literacy deck for engineers, IT, applied-AI teams.

nexu-io/open-design · 53 tokens

html-ppt-taste-brutalist

16:9 HTML deck in tactical-telemetry / CRT-terminal taste. Deactivated-CRT charcoal slides, white-phosphor monospace, hazard-red accent, scanline overlay, ASCII syntax, density over decoration. Distilled from Leonxlnx/taste-skill brutalist-skill (Tactical Telemetry mode).

nexu-io/open-design · 78 tokens

chengfeng-check-updates

An environment manager for a video-editing system. It checks whether its skills and runtime—the software needed to run them—are installed and compatible.

Agentchengfeng/chengfeng-videocut-skills · 120 tokens

diagnostic-stem-delivery

Audio production with diagnostic analysis, timecode parsing from documents, and verified export workflow.

HKUDS/OpenSpace · 23 tokens