Install
openclaw skills install polyglotTranslate text to any language with formality control and cultural notes. Target language defaults to English.
openclaw skills install polyglotTranslate text between any languages with formality control and cultural context. Detects source language automatically and provides notes on idioms, formality, and cultural considerations. Target language defaults to English if not specified.
target_language (defaults to English)formality: formal, informal, or neutral (default)| Permission | Scope | Reason |
|---|---|---|
| Network | aiprox.dev | API calls to orchestration endpoint |
| Env Read | AIPROX_SPEND_TOKEN | Authentication for paid API |
curl -X POST https://aiprox.dev/api/orchestrate \
-H "Content-Type: application/json" \
-H "X-Spend-Token: $AIPROX_SPEND_TOKEN" \
-d '{
"text": "The early bird catches the worm",
"target_language": "Japanese",
"formality": "formal",
"task": "translate"
}'
{
"translated": "早起きは三文の徳",
"language": "English",
"target_language": "Japanese",
"notes": "Used the equivalent Japanese proverb '早起きは三文の徳' (hayaoki wa sanmon no toku) meaning 'waking early brings three mon of virtue.' Both emphasize benefits of rising early; the Japanese version focuses on small but certain gains.",
"formality": "formal"
}
Polyglot processes text for translation only. Content is not stored or logged beyond the transaction. Translation is performed by Claude via LightningProx. Your spend token is used for payment only.