Claude Skill

remotion-docs

Search Remotion documentation

LLM Mart · 0 points · 0 views 0 listing impressions 0 install-command copies
Virus-scanned Reviewed automatically before listing.

Full trust report

Download muzimu217-ui-design-agent-kit-.agents_skills_remotion-docs-aa38774.zip · 2 KB
Part of muzimu217/ui-design-agent-kit — 23 skills

Install

skills CLI npx skills add https://github.com/muzimu217/ui-design-agent-kit/tree/main/.agents/skills/remotion-docs
Claude Code claude plugin marketplace add https://llmmart.ai/marketplace.json && claude plugin install muzimu217-ui-design-agent-kit@llmmart
Git git clone https://github.com/muzimu217/ui-design-agent-kit.git

The skills CLI installs just this skill, for any of its supported agents. Claude Code installs the whole muzimu217/ui-design-agent-kit collection as a plugin from our marketplace. Git is the plain clone.

Skill manifest

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.
Files (ui-design-agent-kit)
  • agents
    • openai.yaml 307 B
      interface:
        display_name: '/remotion-docs'
        short_description: 'Search current Remotion documentation'
        icon_small: './assets/remotion-icon.png'
        icon_large: './assets/remotion-icon.png'
        brand_color: '#0B84F3'
        default_prompt: '$remotion-docs: What server-side rendering options does Remotion have?'
      
  • assets
    • remotion-icon.png 1.3 KB · in bundle
  • SKILL.md 1.3 KB
    ---
    name: remotion-docs
    description: Search Remotion documentation
    metadata:
      version: "4.0.520"
    ---
    
    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.
    

Comments (0)

Sign in to join the conversation.

No comments yet.

Reviews (0)

No reviews yet.

Related