Straker Verify - AI Translation & Human Review
by @indy-at-straker
Professional AI-powered translation with optional human verification. Supports 100+ languages. Quality boost for existing translations. Enterprise-grade security and privacy by straker.ai.
clawhub install straker-verifyπ About This Skill
name: straker-verify description: Professional AI-powered translation with optional human verification. Supports 100+ languages. Quality boost for existing translations. Enterprise-grade security and privacy by straker.ai. version: 1.0.0 author: Straker.ai homepage: https://straker.ai repository: https://github.com/strakergroup/straker-verify-openclaw tags: - translation - localization - i18n - internationalization - l10n - language - translate - multilingual - quality-assurance - human-verification - ai-translation - straker - verify - enterprise - professional - api - nlp - language-services - content-localization - translation-management metadata: {"openclaw":{"emoji":"π","requires":{"env":["STRAKER_VERIFY_API_KEY"]},"primaryEnv":"STRAKER_VERIFY_API_KEY","category":"translation"}}
Straker Verify - AI Translation & Human Review
Professional translation, quality evaluation, and human verification services by Straker.ai.
Features
Quick Start
1. Get your API key from Straker.ai
2. Set the environment variable: STRAKER_VERIFY_API_KEY=your-key
3. Ask your AI assistant: "Translate 'Hello world' to French"
API Reference
Base URL: https://api-verify.straker.ai
Authentication
All requests (except /languages) require Bearer token authentication:
curl -H "Authorization: Bearer $STRAKER_VERIFY_API_KEY" https://api-verify.straker.ai/endpoint
Get Available Languages
curl https://api-verify.straker.ai/languages
Returns a list of supported language pairs with UUIDs for use in other endpoints.
Create Translation Project
curl -X POST https://api-verify.straker.ai/project \
-H "Authorization: Bearer $STRAKER_VERIFY_API_KEY" \
-F "files=@document.txt" \
-F "languages=" \
-F "title=My Translation Project" \
-F "confirmation_required=true"
Confirm Project
Required when confirmation_required=true:
curl -X POST https://api-verify.straker.ai/project/confirm \
-H "Authorization: Bearer $STRAKER_VERIFY_API_KEY" \
-H "Content-Type: application/x-www-form-urlencoded" \
-d "project_id="
Check Project Status
curl https://api-verify.straker.ai/project/ \
-H "Authorization: Bearer $STRAKER_VERIFY_API_KEY"
Download Completed Files
curl https://api-verify.straker.ai/project//download \
-H "Authorization: Bearer $STRAKER_VERIFY_API_KEY" \
-o translations.zip
AI Quality Boost
Enhance existing translations with AI:
curl -X POST https://api-verify.straker.ai/quality-boost \
-H "Authorization: Bearer $STRAKER_VERIFY_API_KEY" \
-F "files=@source.txt" \
-F "language="
Human Verification
Add professional human review to translations:
curl -X POST https://api-verify.straker.ai/human-verify \
-H "Authorization: Bearer $STRAKER_VERIFY_API_KEY" \
-F "files=@translated.txt" \
-F "language="
Response Format
Success:
{
"success": true,
"data": { ... }
}
Error:
{
"success": false,
"error": "Error message"
}
Example Prompts
Support
Environment
The API key is available as $STRAKER_VERIFY_API_KEY environment variable.
π‘ Examples
1. Get your API key from Straker.ai
2. Set the environment variable: STRAKER_VERIFY_API_KEY=your-key
3. Ask your AI assistant: "Translate 'Hello world' to French"