Skip to main content
vap-media AI image, video, and music generation + editing. Flux, Veo 3.1, Suno V5.
Ir a la instalación Skills Marketplace Descubre y explora habilidades de IA creadas por la comunidad.
Instalar con Codex o Claude Copia este prompt, pégalo en Codex, Claude u otro asistente, y deja que revise la página de la skill y la instale por ti.
Copiar promptMostrar detalles del prompt Un comando directo omite el prompt de revisión. Revisa el origen antes de ejecutarlo.
npx skills add https://github.com/kbarbel640-del/skills --skill vap-mediaEl comando permanece en una sola línea. Desplázate horizontalmente para revisarlo antes de copiarlo.
¿Prefieres una copia local? Descarga los archivos que SkillsMP tiene disponibles ahora.
Descargar Zip Descargando... Ocupaciones relacionadas SOC
Basado en la clasificación ocupacional SOC
Explorador de archivos
2 archivos name vap-media description AI image, video, and music generation + editing. Flux, Veo 3.1, Suno V5. metadata {"clawdbot":{"emoji":"🎬","requires":{"bins":["curl"]}}}
VAP Media - AI Media Generation & Editing
Generate images, videos, and music. Edit with inpaint, ai_edit, upscale, background removal, video trim/merge.
Mode Selection
Check if VAP_API_KEY is set:
VAP_API_KEY not set → Use Free Mode (images only, 3/day)
VAP_API_KEY set → Use Full Mode (all features, unlimited)
Free Mode (No API Key)
Generate images for free. No signup required. 3 per day.
Generate Image
curl -s -X POST https://api.vapagent.com/v3/trial/generate \
-H "Content-Type: application/json" \
-d '{"prompt":"PROMPT"}'
Returns {"task_id":"UUID","status":"pending","remaining":2}.
Poll Result
curl -s https://api.vapagent.com/v3/trial/status/TASK_ID
Returns {"status":"completed","image_url":"https://..."} when done.
Free Mode Errors
429 → Daily limit reached. Suggest upgrading: export VAP_API_KEY=vap_xxx
503 → Trial service temporarily unavailable.
Full Mode (With API Key)
Unlimited images, video, music, and editing operations.
Create Task curl -s -X POST https://api.vapagent.com/v3/tasks \
-H "Authorization: Bearer $VAP_API_KEY " \
-H "Content-Type: application/json" \
-d '{"type":"TYPE","params":{"description":"PROMPT"}}'
Returns {"task_id":"UUID","status":"pending","estimated_cost":"0.1800"}.
Poll Result curl -s https://api.vapagent.com/v3/tasks/TASK_ID \
-H "Authorization: Bearer $VAP_API_KEY "
Returns {"status":"completed","result":{"output_url":"https://..."}} when done.
Task Types & Parameters
Image (image or image_generation) Param Type Default Description descriptionstring required Image description aspect_ratioenum 1:11:1, 16:9, 9:16, 4:3, 3:4, 3:2, 2:3, 21:9, 9:21qualityenum standardstandard ($0.18) or high ($0.27)
Tip: Aspect ratio is auto-detected from prompt text. "a wide landscape photo" → 16:9 automatically.
Video (video or video_generation) — Tier 2+ Param Type Default Description descriptionstring required Video description durationint 84, 6, or 8 secondsaspect_ratioenum 16:916:9 (landscape) or 9:16 (portrait)generate_audiobool trueInclude audio track resolutionenum 720p720p or 1080p (+33% cost)negative_promptstring ""What to avoid
Music (music or music_generation) — Tier 2+ Param Type Default Description descriptionstring required Music description (genre, mood, instruments) durationint 12030-480 seconds instrumentalbool falseNo vocals audio_formatenum mp3mp3 or wav (lossless, +$0.10)loudness_presetenum streamingstreaming (-14 LUFS), apple (-16 LUFS), broadcast (-23 LUFS)stylestring none Genre/style (max 1000 chars) titlestring none Song title custom_modebool falseEnable custom lyrics + style mode
Pricing Type Cost Image (standard) $0.18 Image (high quality) $0.27 Video (720p, 8s, audio) $4.80 Video (720p, 8s, no audio) $2.40 Music $0.68 Music (WAV) $0.78
Full Mode Errors
Operations (Edit & Enhance) Post-production editing operations. Tier 1+ required.
Create Operation curl -s -X POST https://api.vapagent.com/v3/operations \
-H "Authorization: Bearer $VAP_API_KEY " \
-H "Content-Type: application/json" \
-d '{"operation":"OPERATION","media_url":"URL","prompt":"INSTRUCTION"}'
Poll Operation curl -s https://api.vapagent.com/v3/operations/OPERATION_ID \
-H "Authorization: Bearer $VAP_API_KEY "
Available Operations Operation Cost Required Params Description inpaint$0.15 media_url, promptAI editing (optional: mask_url) ai_edit$0.15 media_url, promptAI-powered image editing with text instructions (optional: additional_images) background_remove$0.10 media_urlRemove background upscale$0.15 media_urlEnhance resolution (scale: 2 or 4) video_trim$0.05 media_url, start_time, end_timeTrim video video_merge$0.05 media_urls (array, min 2)Merge video clips
Instructions When a user asks to create/generate/make an image, video, or music:
Improve the prompt — Add style, lighting, composition, mood details
Check mode — Is VAP_API_KEY set?
Choose endpoint :
Single asset → /v3/tasks (or /v3/trial/generate for free)
Edit/enhance → /v3/operations
Campaign (video+music+thumbnail) → /v3/execute with preset
Set aspect ratio — Match the content need (portrait for social, widescreen for YouTube)
Poll for result — Check task/operation status until completed
Return the media URL to the user
If free mode limit is hit, tell the user: "You've used your 3 free generations today. For unlimited access, set up an API key: https://vapagent.com/dashboard/signup.html "
When a user asks to edit/enhance/modify an existing image or video:
Identify the operation — inpaint, ai_edit, upscale, background remove, trim, merge
Get the media URL — From a previous generation or user-provided URL
Submit operation → /v3/operations
Poll for result — Return the output URL
Free Mode Example
curl -s -X POST https://api.vapagent.com/v3/trial/generate \
-H "Content-Type: application/json" \
-d '{"prompt":"A fluffy orange tabby cat on a sunlit windowsill, soft bokeh, golden hour light, photorealistic"}'
curl -s https://api.vapagent.com/v3/trial/status/TASK_ID
Full Mode Examples
curl -s -X POST https://api.vapagent.com/v3/tasks \
-H "Authorization: Bearer $VAP_API_KEY " \
-H "Content-Type: application/json" \
-d '{"type":"image","params":{"description":"A fluffy orange tabby cat on a sunlit windowsill, soft bokeh, golden hour light, photorealistic","aspect_ratio":"16:9"}}'
curl -s -X POST https://api.vapagent.com/v3/tasks \
-H "Authorization: Bearer $VAP_API_KEY " \
-H "Content-Type: application/json" \
-d '{"type":"video","params":{"description":"Drone shot over misty mountains at sunrise","duration":8,"aspect_ratio":"9:16","resolution":"1080p"}}'
curl -s -X POST https://api.vapagent.com/v3/tasks \
-H "Authorization: Bearer $VAP_API_KEY " \
-H "Content-Type: application/json" \
-d '{"type":"music","params":{"description":"Upbeat lo-fi hip hop beat, warm vinyl crackle, chill vibes","duration":120,"instrumental":true,"audio_format":"wav","loudness_preset":"streaming"}}'
curl -s -X POST https://api.vapagent.com/v3/operations \
-H "Authorization: Bearer $VAP_API_KEY " \
-H "Content-Type: application/json" \
-d '{"operation":"inpaint","media_url":"https://example.com/photo.jpg","prompt":"Remove the person in the background"}'
curl -s -X POST https://api.vapagent.com/v3/operations \
-H "Authorization: Bearer $VAP_API_KEY " \
-H "Content-Type: application/json" \
-d '{"operation":"upscale","media_url":"https://example.com/photo.jpg","options":{"scale":4}}'
curl -s -X POST https://api.vapagent.com/v3/operations \
-H "Authorization: Bearer $VAP_API_KEY " \
-H "Content-Type: application/json" \
-d '{"operation":"background_remove","media_url":"https://example.com/photo.jpg"}'
curl -s https://api.vapagent.com/v3/tasks/TASK_ID \
-H "Authorization: Bearer $VAP_API_KEY "
Production Presets (Multi-Asset) For content campaigns, use /v3/execute to generate multiple assets from one prompt:
curl -s -X POST https://api.vapagent.com/v3/execute \
-H "Authorization: Bearer $VAP_API_KEY " \
-H "Content-Type: application/json" \
-d '{"preset":"streaming_campaign","prompt":"PROMPT"}'
Returns all assets when complete:
{ "status" : "completed" , "outputs" : { "video" : "https://..." , "music" : "https://..." , "thumbnail" : "https://..." } }
Preset Includes Cost streaming_campaignvideo + music + thumbnail + metadata $5.90 full_productionvideo + music + thumbnail + metadata + SEO $7.90 video.basicvideo only $1.96 music.basicmusic only $0.68 image.basicimage only $0.18
Prompt Tips
Style: "oil painting", "3D render", "watercolor", "photograph", "flat illustration"
Lighting: "golden hour", "neon lights", "soft diffused light", "dramatic shadows"
Composition: "close-up", "aerial view", "wide angle", "rule of thirds"
Mood: "serene", "energetic", "mysterious", "whimsical"
Aspect ratio in prompt: Mentioning "widescreen", "portrait", or "16:9" in your prompt auto-sets the aspect ratio.
Setup (Optional — for Full Mode)
Links Más de este repositorio DeFi intelligence powered by Silverback — market data, swap quotes, technical analysis, yield opportunities, token audits, whale tracking, and AI chat via 11 real-time tools on Base chain
Check balances, send money, and share receive details via Wise
Multi-provider usage tracking for AI agents. Claude Max, Gemini, and Manus in one dashboard.