← ClaudeAtlas

ozor-video-librarylisted

Browse, inspect, re-export, embed, or iterate on videos that already exist in the user's Ozor.ai account. Use this skill whenever the user wants to work with past or in-progress Ozor videos rather than create a new one — e.g. 'list my Ozor videos', 'show my recent videos', 'what's the status of my last video', 'get the embed code for that video', 'download my last Ozor video', 'share link for the explainer I made', 'check on the export', 'send a follow-up edit to that video', 'show the plan for video X', 'render that video again at 9:16', 'is the job done yet'. This skill orchestrates list_videos, get_video, get_job, get_plan, update_plan, send_message, wait_for_job, export_video, wait_for_export, and get_embed_code. Do NOT use this skill to create a new video from scratch — use ozor-generate, ozor-document-video, or ozor-url-to-video.
Mintii-Labs/ozor-skills · ★ 6 · Code & Development · score 66
Install: claude install-skill Mintii-Labs/ozor-skills
# Ozor Video Library Manage existing Ozor.ai videos via the MCP: list, inspect, re-export, embed, or send follow-up edits to the video agent. This skill is the "everything except creating from scratch" surface for `mcp__ozor__*`. ## When to use Use this skill when the user wants to operate on **videos that already exist** in their Ozor account. Signals: - "List / show my videos" - "What's the status of ..." - "Get the share link / download / embed for ..." - "Re-export that video at 9:16" - "Send a follow-up edit: change scene 2 to ..." - "Show me the plan for that video" - "Is the job done yet" / "check on the export" **Do NOT use this skill when:** - Creating a new video from text → `ozor-generate` - Creating from a document/file → `ozor-document-video` - Creating from a URL → `ozor-url-to-video` ## Required MCP tools | Task | Tool | |------|------| | List recent videos | `mcp__ozor__list_videos` | | Get one video's details | `mcp__ozor__get_video` | | Check a build job status | `mcp__ozor__get_job` | | Block until a job finishes | `mcp__ozor__wait_for_job` | | Fetch the plan a video was built from | `mcp__ozor__get_plan` | | Edit a plan | `mcp__ozor__update_plan` | | Trigger a (new) export | `mcp__ozor__export_video` | | Block until export ready | `mcp__ozor__wait_for_export` | | Get `<iframe>` for embedding | `mcp__ozor__get_embed_code` | | Send a follow-up edit message to the agent | `mcp__ozor__send_message` | | List available voices | `mcp__ozor__list_voices` |