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:GET /health
ollang-upload
Uploads a source file to Ollang. Supports video, audio, documents, spreadsheets, and VTT subtitle files. Returns aprojectId used to create orders.
Example prompt:
POST /integration/upload/direct— Direct file uploadPOST /integration/upload/vtt— VTT subtitle upload
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: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: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:GET /integration/orders
Related API docs: Get Orders
ollang-order-cancel
Cancels an active order that hasn’t completed yet. Example prompt: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: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:POST /integration/revision/{orderId}— Create a revisionGET /integration/revision/{orderId}— List all revisionsDELETE /integration/revision/{orderId}/{revId}— Delete a 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:POST /integration/orders/{orderId}/human-review— Request reviewPOST /integration/orders/{orderId}/cancel-human-review— Cancel 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: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:GET /integration/project— List all projectsGET /integration/project/{projectId}— Get project details
ollang-folder
Lists and searches Ollang folders for organizing projects. Example prompt:GET /integration/folder
Related API docs: Retrieve All Folders