remotion-dev/skills · Official

remotion-docs

Search Remotion documentation

All-time #417 Trending #287 Hot #6623 First seen Jul 16, 2026
8-week activity · all time api

Installation

$ npx skills add remotion-dev/skills --skill remotion-docs

Stronger alternatives

Audit results are mixed — compare nearby options before installing.

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Security audits

Partner security reviews for this skill.

agent-trust-hub SAFE

Analyzed Aug 18, 2026

This skill provides a secure way to search and retrieve Remotion documentation via the vendor's official website and Algolia search index. No malicious patterns or security risks were identified.

snyk HIGH

Analyzed Aug 18, 2026

[HIGH] W007: Insecure credential handling detected in skill instructions. [MEDIUM] W011: Third-party content exposure detected (indirect prompt injection risk). [MEDIUM] W012: Unverifiable external dependency detected (runtime URL that controls agent). [HIGH] W008: Secret detected in skill content (API keys, tokens, passwords).

socket Score 0.9000 · 0 alerts

Analyzed Aug 18, 2026

  • license 1
  • maintenance 1
  • quality 0.9
  • supply chain 1
  • vulnerability 1

0 alerts

Also in this package

Other skills from remotion-dev/skills · top by installs.

npx skills add remotion-dev/skills

Browse all from remotion-dev/skills

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Repository health

Stars 4.5K
Default branch main
Open issues 10
Status Active

Skill metadata

Parsed from SKILL.md frontmatter.

Version4.0.521

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 1,340 B
  • docs SUMMARY.md 50 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 64,599 installs

SKILL.md

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

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