LaunchVideo is a product launcher that treats video generation as a code problem rather than a diffusion problem. You paste a URL or type a prompt. Anthropic's Claude Opus 5.5 writes the entire film as HTML/CSS/JS animation code, and a serverless agent on OpenComputer renders it frame-by-frame in a headless browser. The result is a deterministic MP4 — same input, same output, every time. No video diffusion model touches the pipeline. The architecture is aggressively minimal. The entire product is one TypeScript agent file, three tool functions (webfetch, checkscene, rendervideo), and a form. OpenComputer handles the agent runtime, a microVM for rendering, model gateway access, and the session API the frontend polls. Each job spins up a fresh Amazon Linux 2023 ARM64 VM with 4 vCPU and 8 GB RAM, installs Playwright's headless Chromium and a static ffmpeg binary, renders, uploads, and the VM is destroyed. No persistent server. No queue. No framework. The rendering trick is the key technical insight. Rather than generating video pixels with a neural network, the system replaces the browser's timing APIs — requestAnimationFrame, timers, Date, CSS and Web Animations — with a virtual clock. Every frame becomes a deterministic seek operation. The output is 1920×1080 at 30 fps, JPEG frames piped into libx264 at CRF 18. This means the visual quality ceiling is whatever HTML/CSS/JS can render, which is surprisingly high for motion graphics but categorically cannot produce photorealistic footage. The cost profile tells you who this is for. Each video consumes roughly 100,000 tokens — about 90k input and 15k output — most of which is the HTML itself. At Opus 5.5 pricing, that's roughly $3-5 per video in API costs alone, plus compute. The four-minute turnaround and zero-edit claim positions this squarely at startups and product teams who need a launch video fast and don't have a motion designer on staff. The examples shown — NVIDIA, Linear, TypeSafe AI — are polished motion-graphics-style clips, not cinematic productions. The generative potential here is real but bounded. This democratizes one specific capability: converting product information into watchable motion graphics without hiring a freelancer or learning After Effects. The one-click deploy via OpenComputer's template system means other developers can fork the agent and modify it. But the entire value chain runs through two chokepoints — Anthropic's Opus 5.5 model and OpenComputer's runtime — meaning the tool's existence and pricing are downstream of decisions made by two private companies. The competitive landscape matters. Existing AI video tools (Runway, Pika, Kling) use diffusion models to generate novel visual content. LaunchVideo doesn't compete with them — it competes with Canva video templates, Lumen5-style URL-to-video tools, and freelance motion designers on Fiverr. The code-rendering approach trades visual novelty for determinism and editability, which is a legitimate architectural bet for the product-video use case. The broader signal is about what happens when frontier LLMs get good enough at writing animation code. LaunchVideo is a proof of concept for a class of tools where the LLM is the creative director and the renderer is commodity infrastructure. If Opus 5.5 can write a four-minute motion graphics film from a URL, the next question is whether the same pattern extends to interactive demos, onboarding flows, or data visualizations. The constraint is token cost and model capability, not rendering infrastructure.