remotion-docs

Search Remotion documentation via Algolia and fetch pages as Markdown.

4.7k|529|Updated Jan 19, 2026
One-click install
npx skills add https://github.com/remotion-dev/skills --skill remotion-docs-remotion-dev
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: remotion-docs
Source: https://github.com/remotion-dev/skills/tree/main/skills/remotion-docs
Command: npx skills add https://github.com/remotion-dev/skills --skill remotion-docs-remotion-dev

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? AI agents often rely on outdated or memorized API knowledge when working with Remotion, leading to incorrect implementations. This Skill provides a reliable workflow to search the official Remotion documentation and read current pages before writing code. ## Core Features & Use Cases - Algolia Search Integration: Query the official Remotion docs index to find relevant pages by concept or API name. - Markdown Page Fetching: Append .md to any Remotion docs URL to retrieve token-efficient Markdown source. - Use Case: Before implementing server-side rendering, search for "lambda render", pick the most relevant result, fetch https://www.remotion.dev/docs/lambda/rendermediaonlambda.md, and implement against the current API reference. ## Quick Start Ask the agent to look up how to set up Remotion Lambda using the remotion-docs skill before implementing it.

Frequently Asked Questions about remotion-docs

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I search the Remotion documentation programmatically?▼

Send a POST request to the Remotion Algolia index endpoint with your query, the indexName "remotion", and the provided API key and application ID. Each hit returns a url field pointing to the relevant documentation page.

How to fetch a Remotion docs page as Markdown?▼

Append .md to any Remotion documentation URL, such as https://www.remotion.dev/docs/sequence.md. This returns the Markdown source of the page, which saves tokens compared to fetching rendered HTML.

Why should agents fetch Remotion docs instead of using memorized knowledge?▼

Remotion APIs change between versions, so memorized knowledge can produce outdated or incorrect code. Searching Algolia and fetching the current .md page ensures implementations match the latest documentation.

Does the Remotion docs search require authentication?▼

The search uses a public Algolia search-only API key and application ID included in the request URL. No separate user authentication or account is required to query the documentation index.

What are the limitations of searching Remotion docs with Algolia?▼

Results are limited to pages indexed in the Remotion Algolia index, with hitsPerPage controlling result count. Content not published on the official docs site, such as GitHub issues or community posts, is not covered.