Skip to main content

Quick Start

Add Ollang Skills to your AI agent in one command.

Prerequisites

  • An Ollang account (free to sign up)
  • An Ollang API key (generate one in the Olabs Dashboard)
  • A compatible AI coding agent (Cursor, Claude Code, Codex, Windsurf, Cline, or similar)
  • Node.js installed (for the npx command)

Installation

Run this in your project root (or anywhere your agent can read files):
npx skills add https://github.com/ollang/skills --skill ollang
This downloads the Ollang master skill and all 12 sub-skills into your local skills directory.

Verify Installation

After installing, you should see an ollang skill folder in your project’s .skills/ or .cursor/skills/ directory (location depends on your agent). Confirm by asking your agent:
Check if the Ollang API is healthy.
The agent will use the ollang-health sub-skill to ping the API and confirm connectivity.

Set Your API Key

Provide your Ollang API key so the agent can authenticate:
My Ollang API key is olk_xxxxxxxxxxxx
The agent stores this in-session. For persistent configuration, set the OLLANG_API_KEY environment variable or add it to your project’s .env:
.env
OLLANG_API_KEY=olk_xxxxxxxxxxxx

Your First Translation

Try asking your agent:
Upload the video at https://example.com/intro.mp4 to Ollang
and create a subtitle order for French and Japanese.
The agent will:
  1. Call ollang-upload to upload the video → returns a projectId
  2. Call ollang-order-create with subtitle type and fr + ja targets → returns order IDs
  3. Report back the order details and suggest checking status later

Example Prompts

Upload contract.pdf to Ollang and create a document translation
order for Spanish and German.
What's the status of Ollang order #12345?
Run a quality check on order #12345 for accuracy and fluency.
Show me my last 10 Ollang orders.
Request human review for order #12345.
Report a timing issue on order #12345 — the subtitle at 01:23 is
2 seconds late.

Updating Skills

To pull the latest version of Ollang Skills:
npx skills update
Or check for updates first:
npx skills check

Next Steps

Sub-Skills Reference

See all 12 sub-skills and their parameters.

Ollang API Reference

Full REST API docs for advanced usage.