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.
npx skills add Buzzmatic/awesome-agent-skills --skill kie-aigit clone --depth 1 https://github.com/Buzzmatic/awesome-agent-skillsWrote 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.
[](https://agentmods.dev/skills/buzzmatic/awesome-agent-skills/kie-ai)<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.
<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>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.
| Model | Per session | Once 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 |
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.
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.
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"
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.
- favicon/icon.png 910 B
- references/api_reference.md 6.3 KB
- scripts/audio/suno_extend.py 4.5 KB runs code
- scripts/audio/suno_generate.py 6.1 KB runs code
- scripts/audio/suno_lyrics.py 2.1 KB runs code
- scripts/audio/suno_status.py 2.1 KB runs code
- scripts/audio/suno_style.py 4.2 KB runs code
- scripts/audio/suno_video.py 4.2 KB runs code
- scripts/audio/suno_vocal_removal.py 4.4 KB runs code
- scripts/audio/suno_wav.py 4.3 KB runs code
- scripts/bulk/bulk_generate.py 11 KB runs code
- scripts/bulk/bulk_status.py 5.6 KB runs code
- scripts/common/get_credits.py 1.8 KB runs code
- scripts/common/get_download_url.py 2.0 KB runs code
- scripts/image/flux_generate.py 6.7 KB runs code
- scripts/image/flux_status.py 2.0 KB runs code
- scripts/image/gpt4o_generate.py 6.0 KB runs code
- scripts/image/gpt4o_status.py 2.1 KB runs code
- scripts/kie_client.py 13 KB runs code
- scripts/upload/upload_base64.py 3.5 KB runs code
- scripts/upload/upload_stream.py 3.0 KB runs code
- scripts/upload/upload_url.py 2.0 KB runs code
- scripts/video/luma_modify.py 4.9 KB runs code
- scripts/video/luma_status.py 2.0 KB runs code
- scripts/video/runway_extend.py 4.2 KB runs code
- scripts/video/runway_generate.py 5.3 KB runs code
- scripts/video/runway_status.py 2.0 KB runs code
- scripts/video/veo_generate.py 6.3 KB runs code
- scripts/video/veo_hd.py 2.4 KB runs code
- scripts/video/veo_status.py 2.0 KB runs code
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.
- 11d ago First seen · 181 lines · 89 tokens per session scan A 60f9f5aa982a
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.
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.
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…
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.
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).
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.
diagnostic-stem-delivery
Audio production with diagnostic analysis, timecode parsing from documents, and verified export workflow.