Getting it into your agent
There is no command for this one: it runs only inside a plugin, and the catalogue could not identify which plugin ships it. The source is linked below.
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.
[](https://agentmods.dev/skills/happycapy-ai/happycapy-skills/capy-video-gen-skill)<a href="https://agentmods.dev/skills/happycapy-ai/happycapy-skills/capy-video-gen-skill"><img src="https://agentmods.dev/badge/skills/happycapy-ai/happycapy-skills/capy-video-gen-skill/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/happycapy-ai/happycapy-skills/capy-video-gen-skill"><img src="https://agentmods.dev/badge/skills/happycapy-ai/happycapy-skills/capy-video-gen-skill.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.00077 | $0.02269 |
| Opus 5 | $0.00039 | $0.01135 |
| Sonnet 5 | $0.00015 | $0.00454 |
| Haiku 4.5 | $0.00008 | $0.00227 |
Grade A, and why
capy-video-gen-skill 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 12d 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 — 256 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Capy Video Gen Skill - Script-to-Video Pipeline
Generate complete multi-shot videos from scripts or ideas with consistent character faces across all scenes. Built for HappyCapy AI Gateway. 300 experiments validated, 70% face distance improvement.
Overview
ViMax converts text scripts into full videos through an automated pipeline:
- Extract characters from script with detailed physical features
- Generate front/side/back character portraits
- Design shot-by-shot storyboard
- Decompose each shot into first_frame, last_frame, and motion descriptions
- Build camera tree for shot relationships
- Generate frames with reference image selection (face identity as top priority)
- Generate video clips from frames
- Concatenate into final video
Installation Location
The ViMax pipeline code is at: /home/node/a0/workspace/527fb591-1439-4b5b-ad5d-90f972773f95/workspace/tmp/ViMax/
All commands must be run from this directory using the venv:
cd /home/node/a0/workspace/527fb591-1439-4b5b-ad5d-90f972773f95/workspace/tmp/ViMax
Prerequisites
AI_GATEWAY_API_KEYenvironment variable (auto-configured in HappyCapy)- Python venv at
.venv/(already set up)
Quick Start
Script-to-Video
Edit the script, requirements, and style in the entry script, then run:
cd /home/node/a0/workspace/527fb591-1439-4b5b-ad5d-90f972773f95/workspace/tmp/ViMax
.venv/bin/python main_happycapy_script2video.py
Idea-to-Video
For generating from a brief idea (auto-generates script first):
cd /home/node/a0/workspace/527fb591-1439-4b5b-ad5d-90f972773f95/workspace/tmp/ViMax
.venv/bin/python main_happycapy_idea2video.py
Programmatic Usage
import asyncio
from langchain.chat_models import init_chat_model
from tools.render_backend import RenderBackend
from utils.config_loader import load_config
from pipelines.script2video_pipeline import Script2VideoPipeline
config = load_config("configs/happycapy_script2video.yaml")
chat_model = init_chat_model(**config["chat_model"]["init_args"])
backend = RenderBackend.from_config(config)
pipeline = Script2VideoPipeline(
chat_model=chat_model,
image_generator=backend.image_generator,
video_generator=backend.video_generator,
working_dir=config["working_dir"],
)
# Run the pipeline
asyncio.run(pipeline(
script="Your script here...",
user_requirement="No more than 8 shots total.",
style="Cinematic, warm lighting"
))
What ships with it
60 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.
- .gitignore 221 B
- agents/__init__.py 505 B runs code
- agents/best_image_selector.py 7.0 KB runs code
- agents/camera_image_generator.py 11 KB runs code
- agents/character_extractor.py 4.1 KB runs code
- agents/character_portraits_generator.py 3.7 KB runs code
- agents/event_extractor.py 6.0 KB runs code
- agents/global_information_planner.py 18 KB runs code
- agents/novel_compressor.py 7.6 KB runs code
- agents/reference_image_selector.py 17 KB runs code
- agents/scene_extractor.py 5.2 KB runs code
- agents/screenwriter.py 9.9 KB runs code
- agents/script_enhancer.py 5.4 KB runs code
- agents/script_planner.py 25 KB runs code
- agents/storyboard_artist.py 18 KB runs code
- assets/mascot.png 815 KB
- assets/pipeline.png 150 KB
- assets/vimax.png 1751 KB
- Communication.md 234 B
- configs/happycapy_idea2video.yaml 799 B
- configs/happycapy_script2video.yaml 802 B
- configs/idea2video.yaml 876 B
- configs/script2video.yaml 878 B
- FACE_IDENTITY_GUIDE.md 3.0 KB
- interfaces/__init__.py 550 B runs code
- interfaces/camera.py 1.5 KB runs code
- interfaces/character.py 4.0 KB runs code
- interfaces/environment.py 1.1 KB runs code
- interfaces/event.py 1.9 KB runs code
- interfaces/frame.py 727 B runs code
- interfaces/image_output.py 1.5 KB runs code
- interfaces/scene.py 2.4 KB runs code
- interfaces/shot_description.py 12 KB runs code
- interfaces/video_output.py 1.0 KB runs code
- LICENSE 1.0 KB
- main_happycapy_demo.py 7.4 KB runs code
- main_happycapy_idea2video.py 2.1 KB runs code
- main_happycapy_script2video.py 2.7 KB runs code
- main_idea2video.py 951 B runs code
- main_script2video.py 1.6 KB runs code
- pipelines/__init__.py 0 B runs code
- pipelines/idea2video_pipeline_deprecated.py 337 B runs code
- pipelines/idea2video_pipeline.py 9.6 KB runs code
- pipelines/novel2movie_pipeline.py 27 KB runs code
- pipelines/script2video_pipeline.py 30 KB runs code
- pyproject.toml 856 B
- README_ZH.md 16 KB
- README.md 18 KB
- TODO 184 B
- tools/__init__.py 1.3 KB runs code
- tools/image_generator_doubao_seedream_yunwu_api.py 2.0 KB runs code
- tools/image_generator_happycapy_api.py 5.9 KB runs code
- tools/image_generator_nanobanana_google_api.py 2.8 KB runs code
- tools/image_generator_nanobanana_yunwu_api.py 2.0 KB runs code
- tools/protocols.py 1002 B runs code
- tools/render_backend.py 2.1 KB runs code
- tools/reranker_bge_silicon_api.py 1.9 KB runs code
- tools/video_generator_doubao_seedance_yunwu_api.py 6.1 KB runs code
- tools/video_generator_happycapy_api.py 8.1 KB runs code
- tools/video_generator_veo_google_api.py 4.1 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.
- 12d ago First seen · 256 lines · 77 tokens per session scan A 536e0dc054fd
capy-video-gen-skill is a skill published in the GitHub repository happycapy-ai/Happycapy-skills (139 stars, last pushed 9d ago), licensed MIT. It adds 77 tokens to every session and 2,269 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-30.
Other skills, from other repositories
systematic-debugging
Use when encountering any bug, test failure, or unexpected behavior, before proposing fixes.
local-ai-agents
Build local-first AI agents that run entirely on a developer workstation with Microsoft Foundry Local and Qwen function-calling models. Covers Small Language Models (SLMs), the OpenAI-compatible local endpoint, sandboxed local tools, local RAG with Chroma, local MCP servers, hybrid cloud/local routing, and the…
next-cache-components-adoption
Turn on Cache Components in a Next.js app and resolve the blocking routes it surfaces. Use when the user wants to enable, adopt, or migrate to Cache Components, flip the cacheComponents flag, work through a flood of blocking-prerender / instant validation errors, run the cache-components-instant-false codemod, or…
chat-pet-sprite-creation
Use when creating or changing VS Code chat pet sprite art, sprite sheets, state animations, eye treatments, Stable/Insiders variants, or pet transitions under src/vs/workbench/contrib/chat/browser/widget/media/chatPet.
cpu-profile-analysis
Analyze V8/Chrome CPU profiles (.cpuprofile) and DevTools trace files (Trace-.json). Use when: profiling performance, investigating slow functions, comparing code paths, finding bottlenecks, analyzing timeToRequest, understanding call trees from sampling profiler data, analyzing layout/paint/rendering, investigating…
insight-error-page
Write or audit an insight-kind error page for the Next.js dev overlay. Use when creating a new errors/ .mdx page, auditing an existing one, or checking that a page matches the framework fix cards. Covers page structure, title alignment, FixCard cards with Copy prompt button, code snippets, terminology verification…