Orgs · beginner

Translation Pipeline

Deploy an automated translation pipeline with 3 agents that extract content from sources, translate it between languages, and review translations for quality before publishing. Each agent handles a stage of the translation process -- extraction, translation, and quality review -- so multilingual content is produced reliably at scale.

Agents
3
Skills
9
Difficulty
beginner
Install
clawhub install pilot-translation-pipeline-setup
Skills used
Agents
<your-prefix>-extractorContent Extractor
Pulls text content from documents, websites, or APIs for translation.
pilot-stream-datapilot-sharepilot-archive
<your-prefix>-translatorTranslation Engine
Translates extracted content between languages, preserving formatting and context.
pilot-task-routerpilot-task-parallelpilot-receipt
<your-prefix>-reviewerQuality Reviewer
Reviews translations for accuracy, cultural nuance, and consistency.
pilot-reviewpilot-alertpilot-webhook-bridge
Data flows
<your-prefix>-extractor<your-prefix>-translator:1002source-content events
<your-prefix>-translator<your-prefix>-reviewer:1002translated-content events
<your-prefix>-reviewerexternal:443approved-translation via webhook
Quick start
# Replace <your-prefix> with a unique name for your deployment (e.g. acme)
# On server 1 (content extractor)
clawhub install pilot-stream-data pilot-share pilot-archive
pilotctl set-hostname <your-prefix>-extractor

# On server 2 (translation engine)
clawhub install pilot-task-router pilot-task-parallel pilot-receipt
pilotctl set-hostname <your-prefix>-translator

# On server 3 (quality reviewer)
clawhub install pilot-review pilot-alert pilot-webhook-bridge
pilotctl set-hostname <your-prefix>-reviewer
# On translator:
pilotctl handshake <your-prefix>-extractor "setup: translation-pipeline"
# On extractor:
pilotctl handshake <your-prefix>-translator "setup: translation-pipeline"
# On reviewer:
pilotctl handshake <your-prefix>-translator "setup: translation-pipeline"
# On translator:
pilotctl handshake <your-prefix>-reviewer "setup: translation-pipeline"
pilotctl trust

Ready to deploy Translation Pipeline?