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
| Sub-Skill | When the Agent Uses It |
|---|---|
ollang-health | Check if the Ollang API is up and reachable |
ollang-upload | Upload a video, audio, document, or VTT subtitle file |
ollang-order-create | Create a translation, CC, subtitle, or dubbing order |
ollang-order-get | Check the status or details of a specific order |
ollang-orders-list | List, search, or filter orders |
ollang-order-cancel | Cancel an active order |
ollang-order-rerun | Rerun/regenerate a completed order with latest AI models |
ollang-revision | Report issues or manage revisions on a completed order |
ollang-human-review | Request or cancel professional linguist review |
ollang-qc-eval | Run an AI-powered quality control evaluation |
ollang-project | List or inspect projects |
ollang-folder | List or find folders |
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 /upload— Direct file uploadPOST /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 /order
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 /order/:id
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 /orders
Related API docs: Get Orders
ollang-order-cancel
Cancels an active order that hasn’t completed yet. Example prompt:POST /order/:id/cancel
Related API docs: Cancel Order
ollang-order-rerun
Reruns a completed order to regenerate the translation using the latest AI models. Example prompt:POST /order/:id/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 /order/:id/revision— Create a revisionGET /order/:id/revisions— List all revisionsDELETE /order/:id/revision/:revisionId— 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 /order/:id/human-review— Request reviewPOST /order/:id/human-review/cancel— 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 /order/:id/qc
Related API docs: Run QC Evaluation
ollang-project
Lists all projects or retrieves details for a specific project by ID. Example prompt:GET /projects— List all projectsGET /project/:id— Get project details
ollang-folder
Lists and searches Ollang folders for organizing projects. Example prompt:GET /folders
Related API docs: Retrieve All Folders