# Together AI Video Generation Skill for Claude Code > Skill that teaches Claude Code Together AI's video generation API. Covers text-to-video, image-to-video, and keyframe control for AI-powered video creation workflows. ## Install Save the content below to `.claude/skills/` or append to your `CLAUDE.md`: ## Quick Use ```bash npx skills add togethercomputer/skills ``` ## What is This Skill? This skill teaches AI coding agents how to generate videos using Together AI's video API. It covers text-to-video generation, image-to-video conversion, and keyframe control for creating short video clips programmatically. **Answer-Ready**: Together AI Video Generation Skill for coding agents. Covers text-to-video, image-to-video, and keyframe control. Correct SDK patterns and model parameters. Part of official 12-skill collection. **Best for**: Developers building AI video generation pipelines. **Works with**: Claude Code, Cursor, Codex CLI. ## What the Agent Learns ### Text-to-Video ```python from together import Together client = Together() response = client.video.generate( model="together-ai/video-model", prompt="A cat playing piano, cinematic lighting", duration=4, resolution="720p", ) ``` ### Image-to-Video ```python response = client.video.generate( model="together-ai/video-model", prompt="Make this photo come alive with gentle motion", image_url="https://example.com/photo.jpg", ) ``` ### Keyframe Control Define start and end frames for controlled video transitions between visual states. ## FAQ **Q: How long can videos be?** A: Short clips, typically 2-8 seconds depending on model and resolution. ## Source & Thanks > Part of [togethercomputer/skills](https://github.com/togethercomputer/skills) — MIT licensed. ## 快速使用 ```bash npx skills add togethercomputer/skills ``` ## 什么是这个 Skill? 教 AI Agent 使用 Together AI 的视频生成 API,支持文生视频、图生视频和关键帧控制。 **一句话总结**:Together AI 视频生成 Skill,文生视频 + 图生视频 + 关键帧控制,官方出品。 ## 来源与致谢 > [togethercomputer/skills](https://github.com/togethercomputer/skills) — MIT --- Source: https://tokrepo.com/en/workflows/d848ded0-8bff-4424-8ef5-dda71b903327 Author: Skill Factory