Skip to content
OpenSmartRoute
Skillv1.0.0

remotion-docs

Search and fetch Remotion documentation pages

by aiskillstore(0) 0 installs
Free
Sign in to install

Free account. Installing gives you the manifest plus copy-paste snippets.

See reviews

About

Imported from aiskillstore/marketplace (skills/remotion-dev/remotion-docs/SKILL.md). Install upstream with npx skills add aiskillstore/marketplace --skill remotion-docs. Copyright stays with 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

  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.

Use it

Copy one of these into your project. Installing also returns the manifest and these snippets.

yaml
targets:
  - https://api.opensmartroute.ai/api/v1/registry/aiskillstore-marketplace-remotion-docs/manifest   # or paste the manifest below

Manifest

An Open Capability Manifest: the router reads it to know what this does, what it costs and when to pick it.

aiskillstore-marketplace-remotion-docs.ocm.jsonjson
{
  "ocm": "1",
  "id": "aiskillstore-marketplace-remotion-docs",
  "kind": "skill",
  "name": "remotion-docs",
  "description": "Search and fetch Remotion documentation pages",
  "publisher": "aiskillstore",
  "version": "1.0.0",
  "capabilities": {
    "domains": [
      "general"
    ],
    "tags": [
      "skill-md",
      "remotion",
      "docs",
      "documentation",
      "search",
      "skills-sh"
    ],
    "languages": [
      "en"
    ]
  },
  "quality_prior": 0.6,
  "examples": [
    "Search and fetch Remotion documentation pages"
  ],
  "primary": false,
  "metadata": {
    "source": {
      "provider": "skills.sh",
      "repository": "https://github.com/aiskillstore/marketplace",
      "path": "skills/remotion-dev/remotion-docs/SKILL.md",
      "ref": "HEAD",
      "url": "https://github.com/aiskillstore/marketplace/blob/HEAD/skills/remotion-dev/remotion-docs/SKILL.md",
      "key": "aiskillstore/marketplace/skills/remotion-dev/remotion-docs/SKILL.md"
    }
  },
  "instructions": "This skill teaches you how to discover and read current Remotion documentation.\nIf this is not relevant, load [Remotion Best Practices](../remotion-best-practices/SKILL.md) instead.\n\n## Searching the docs\n\nUse the Algolia search API to find relevant documentation pages:\n\n```\nPOST https://plsduol1ca-dsn.algolia.net/1/indexes/*/queries?x-algolia-api-key=3e42dbd4f895fe93ff5cf40d860c4a85&x-algolia-application-id=PLSDUOL1CA\nContent-Type: application/x-www-form-urlencoded\n\n{\n  \"requests\": [\n    {\n      \"query\": \"<your search query>\",\n      \"indexName\": \"remotion\",\n      \"params\": \"attributesToRetrie",
  "cost": {
    "context_tokens": 322
  }
}

Fetch it by URL: GET /api/v1/registry/aiskillstore-marketplace-remotion-docs/manifest?version=1.0.0

Reviews

Star ratings from people who tried it. One review per account; edit yours any time.

No reviews yet. Install it, try it, and be the first to rate it.