2.8k★straker-verify – OpenClaw Skill
straker-verify is an OpenClaw Skills integration for coding workflows. Professional AI-powered translation with optional human verification. Supports 100+ languages. Quality boost for existing translations. Enterprise-grade security and privacy by straker.ai.
Skill Snapshot
| 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. OpenClaw Skills integration. |
| owner | indy-at-straker |
| repository | indy-at-straker/straker-verify |
| language | Markdown |
| license | MIT |
| topics | |
| security | L1 |
| install | openclaw add @indy-at-straker/straker-verify |
| last updated | Feb 7, 2026 |
Maintainer

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
- AI Translation: Translate content to 100+ languages with enterprise-grade accuracy
- Quality Boost: AI-powered enhancement for existing translations
- Human Verification: Professional human review for critical content
- File Support: Documents, text files, and more
- Project Management: Track translation projects from submission to delivery
Quick Start
- Get your API key from Straker.ai
- Set the environment variable:
STRAKER_VERIFY_API_KEY=your-key - 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=<language-uuid>" \
-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=<project-uuid>"
Check Project Status
curl https://api-verify.straker.ai/project/<project-uuid> \
-H "Authorization: Bearer $STRAKER_VERIFY_API_KEY"
Download Completed Files
curl https://api-verify.straker.ai/project/<project-uuid>/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=<language-uuid>"
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=<language-uuid>"
Response Format
Success:
{
"success": true,
"data": { ... }
}
Error:
{
"success": false,
"error": "Error message"
}
Example Prompts
- "What languages can I translate to?"
- "Translate this text to Spanish: Hello, how are you?"
- "Create a translation project for my document"
- "Check the status of my translation project"
- "Run a quality boost on this French translation"
- "Add human verification to my German translation"
Support
- Website: straker.ai
- API Docs: api-verify.straker.ai/docs
Environment
The API key is available as $STRAKER_VERIFY_API_KEY environment variable.
Straker Verify - OpenClaw Skill
AI-powered translation with optional human verification for OpenClaw.
Installation
clawhub install straker-verify
Or manually copy SKILL.md to your OpenClaw workspace: ~/clawd/skills/straker-verify/SKILL.md
Configuration
- Get your API key from straker.ai
- Set the environment variable:
export STRAKER_VERIFY_API_KEY=your-key
Features
- 100+ languages
- AI translation
- Quality boost
- Human verification
- Enterprise security & privacy
Links
License
MIT
Permissions & Security
Security level L1: Low-risk skills with minimal permissions. Review inputs and outputs before running in production.
Requirements
- OpenClaw CLI installed and configured.
- Language: Markdown
- License: MIT
- Topics:
FAQ
How do I install straker-verify?
Run openclaw add @indy-at-straker/straker-verify in your terminal. This installs straker-verify into your OpenClaw Skills catalog.
Does this skill run locally or in the cloud?
OpenClaw Skills execute locally by default. Review the SKILL.md and permissions before running any skill.
Where can I verify the source code?
The source repository is available at https://github.com/openclaw/skills/tree/main/skills/indy-at-straker/straker-verify. Review commits and README documentation before installing.
