Skip to main content

Sub-Skills Reference

The Ollang master skill routes to the right sub-skill based on what you ask your agent. Here’s every sub-skill, when the agent uses it, and the API surface it covers.

Quick Reference


ollang-health

Pings the Ollang API to verify it’s online. No API key required. Example prompt:
API endpoint: GET /health

ollang-upload

Uploads a source file to Ollang. Supports video, audio, documents, spreadsheets, and VTT subtitle files. Returns a projectId used to create orders. Example prompt:
API endpoints:
  • POST /integration/upload/direct — Direct file upload
  • POST /integration/upload/vtt — VTT subtitle upload
Related API docs: Direct File Upload, Upload a VTT

ollang-order-create

Creates one or more translation orders for a project. Supports order types: closed captions, subtitles, document translation, AI dubbing, and studio dubbing. Example prompt:
API endpoint: POST /integration/orders/create Related API docs: Create Order, Order Types

ollang-order-get

Retrieves full details of a specific order by ID, including status, languages, documents, and QC results. Example prompt:
API endpoint: GET /integration/orders/{orderId} Related API docs: Get Order by ID

ollang-orders-list

Lists orders with optional filtering by type, name, date range, and pagination. Example prompt:
API endpoint: GET /integration/orders Related API docs: Get Orders

ollang-order-cancel

Cancels an active order that hasn’t completed yet. Example prompt:
API endpoint: POST /integration/orders/cancel/{orderId} Related API docs: Cancel Order

ollang-order-rerun

Reruns a completed order to regenerate the translation using the latest AI models. Example prompt:
API endpoint: POST /integration/orders/{orderId}/rerun Related API docs: Rerun Order

ollang-revision

Creates, lists, or deletes revision requests on a completed order. Use this to flag subtitle timing issues, mistranslations, or other problems. Example prompt:
API endpoints:
  • POST /integration/revision/{orderId} — Create a revision
  • GET /integration/revision/{orderId} — List all revisions
  • DELETE /integration/revision/{orderId}/{revId} — Delete a revision
Related API docs: Create Revision, Get Revisions, Delete Revision

ollang-human-review

Requests or cancels a professional linguist review for an order. Human review upgrades AI-generated output with expert review. Example prompt:
API endpoints:
  • POST /integration/orders/{orderId}/human-review — Request review
  • POST /integration/orders/{orderId}/cancel-human-review — Cancel review
Related API docs: Request Human Review, Cancel Human Review

ollang-qc-eval

Runs an AI-powered quality control evaluation on a completed order. Returns scores for accuracy, fluency, tone, and cultural fit, plus segment-level analysis. Example prompt:
API endpoint: POST /integration/orders/{orderId}/qc Related API docs: Run QC Evaluation

ollang-project

Lists all projects or retrieves details for a specific project by ID. Example prompt:
API endpoints:
  • GET /integration/project — List all projects
  • GET /integration/project/{projectId} — Get project details
Related API docs: Retrieve All Projects, Get Project by ID

ollang-folder

Lists and searches Ollang folders for organizing projects. Example prompt:
API endpoint: GET /integration/folder Related API docs: Retrieve All Folders