mcpbeat

Remotion Docs

remotion-dev/remotion-remotion-docs

Search Remotion documentation

This is a copy. The original lives at remotion-dev/remotion-docs.

743 tokens
context cost
the whole folder, loaded on every use
3
files
instructions only
1
copies elsewhere
how many repositories repackaged it
55471
stars on the repo
on the repository, not the skill itself

Install

one command, takes just this skill from the repository
npx skills add https://github.com/remotion-dev/remotion --skill remotion-docs

What comes with it

1 593 bytes besides the instruction
agents/openai.yaml
assets/remotion-icon.png

The instruction itself

3 sections, as written by the author

This skill teaches you how to discover and read current Remotion documentation.

If this is not relevant, load Remotion Best Practices instead.

Searching the docs

Use the Algolia search API to find relevant documentation pages:

POST https://plsduol1ca-dsn.algolia.net/1/indexes/*/queries?x-algolia-api-key=3e42dbd4f895fe93ff5cf40d860c4a85&x-algolia-application-id=PLSDUOL1CA
Content-Type: application/x-www-form-urlencoded

{
  "requests": [
    {
      "query": "<your search query>",
      "indexName": "remotion",
      "params": "attributesToRetrieve=[\"hierarchy.lvl0\",\"hierarchy.lvl1\",\"hierarchy.lvl2\",\"url\"]&hitsPerPage=10"
    }
  ]
}

Each hit contains a url field pointing to the documentation page.

Fetching a page as Markdown

Append .md to any Remotion docs URL to retrieve its Markdown source (saves tokens):

https://www.remotion.dev/docs/use-video-config.md
https://www.remotion.dev/docs/sequence.md
https://www.remotion.dev/docs/lambda/rendermediaonlambda.md

Workflow

  • Search Algolia for the concept or API you need.
  • Pick the most relevant URL(s) from the results.
  • Fetch each URL with the .md suffix.
  • Implement using the current documentation rather than memorized API knowledge.

Repackaged in 1 other repositories

same content, different owner
remotion-dev/skills open on GitHub →

How to use it

Copy the folder

Take remotion-dev/remotion-remotion-docs from the repository into ~/.claude/skills for personal use, or into .claude/skills inside a project.

Check the name does not clash

The agent identifies a skill by the name field in its header. Two skills with the same name cannot sit side by side — one of them will be ignored.