← 返回 Skills 市场
cyberforexblockchain

NEXUS Translate

作者 CyberForexBlockchain · GitHub ↗ · v1.1.0 · MIT-0
cross-platform ✓ 安全检测通过
345
总下载
0
收藏
0
当前安装
2
版本数
在 OpenClaw 中安装
/install nexus-translate
功能描述
High-quality translations with cultural awareness (50+ languages)
使用说明 (SKILL.md)

AI Translation Service

NEXUS Agent-as-a-Service on Cardano + Stellar | Price: $0.12/request | Accepts: ADA, DJED, iUSD, USDCx, USDM (Cardano) + USDC, XLM (Stellar)

When to use

Use when you need to translate text between languages.

Steps

Option A: x402 Standard (Recommended)

  1. Call the service endpoint without payment headers.
  2. Receive HTTP 402 with WWW-Authenticate: Payment header AND x402 accepts[] array in response body.
  3. Select a paymentRequirement from accepts[] matching your preferred network + asset.
  4. Networks: cardano:mainnet (ADA, DJED, iUSD, USDCx, USDM), stellar:pubnet (USDC, XLM), sandbox (free).
  5. Send payment to the payTo address for maxAmountRequired in the specified asset.
  6. Stellar fee sponsorship: POST your signed XDR to https://ai-service-hub-15.emergent.host/api/mpp/stellar/sponsor — NEXUS pays gas, you need 0 XLM.
  7. Retry with X-PAYMENT: \x3Cbase64url JSON {x402Version:1, scheme:"exact", network, payload:{tx_hash, currency}}> header.
  8. Parse the JSON response and X-PAYMENT-RESPONSE header.

Option B: MPP Standard

  1. Call the service endpoint without payment headers.
  2. Receive HTTP 402 with WWW-Authenticate: Payment header listing all accepted currencies and amounts.
  3. Pick your preferred chain + currency: Cardano (ADA, stablecoins) or Stellar (USDC, XLM).
  4. Create payment: Masumi escrow (Cardano) or direct Stellar transfer.
  5. Stellar fee sponsorship: POST your signed XDR to https://ai-service-hub-15.emergent.host/api/mpp/stellar/sponsor — NEXUS pays gas, you need 0 XLM.
  6. Retry with Authorization: Payment \x3Cbase64url-credential> header.
  7. Parse the JSON response and Payment-Receipt header.

Option C: Legacy Header

  1. Send a POST request to the NEXUS API endpoint with your input.
  2. Include the X-Payment-Proof header (Masumi payment ID or sandbox_test for testing).
  3. Parse the JSON response and return the result.

API Call

curl -X POST https://ai-service-hub-15.emergent.host/api/original-services/translate \
  -H "Content-Type: application/json" \
  -H "X-Payment-Proof: $NEXUS_PAYMENT_PROOF" \
  -d '{"text": "Hello, how are you?", "target_language": "ja"}'

Endpoint: https://ai-service-hub-15.emergent.host/api/original-services/translate Method: POST Headers:

  • Content-Type: application/json
  • X-PAYMENT: \x3Cbase64url JSON> (x402 standard — recommended)
  • Authorization: Payment \x3Ccredential> (MPP standard)
  • X-Payment-Proof: \x3Cmasumi_payment_id> (legacy — use sandbox_test for free testing)

Accepted Currencies: ADA, DJED, iUSD, USDCx, USDM (Cardano) | USDC, XLM (Stellar) x402 Discovery: GET https://ai-service-hub-15.emergent.host/api/mpp/x402 (all services in native x402 format) MPP Discovery: GET https://ai-service-hub-15.emergent.host/api/mpp/discover Stablecoin Registry: GET https://ai-service-hub-15.emergent.host/api/mpp/stablecoins (includes on-chain policy IDs) Stellar Info: GET https://ai-service-hub-15.emergent.host/api/mpp/stellar (assets, recipient, fee sponsorship) Fee Sponsorship: POST https://ai-service-hub-15.emergent.host/api/mpp/stellar/sponsor (NEXUS pays Stellar gas — agents need 0 XLM)

External Endpoints

URL Method Data Sent
https://ai-service-hub-15.emergent.host/api/original-services/translate POST Input parameters as JSON body

Security & Privacy

  • All data is sent to https://ai-service-hub-15.emergent.host over HTTPS/TLS.
  • No data is stored permanently; requests are processed and discarded.
  • Payment proofs are verified on the Cardano blockchain via the Masumi Protocol.
  • No filesystem access or shell execution required.

Model Invocation Note

This skill calls the NEXUS AI service API which uses LLM models (GPT-5.2, Claude Sonnet 4.5, GPT-4o) to process requests. The AI processes your input server-side and returns a structured response. You may opt out by not installing this skill.

Trust Statement

By using this skill, your input data is sent to NEXUS (https://ai-service-hub-15.emergent.host) for AI processing. Payments are non-custodial via the Masumi Protocol on Cardano. Only install if you trust NEXUS as a service provider. Visit https://ai-service-hub-15.emergent.host for full documentation.

Tags

machine-learning, artificial-intelligence, free-trial, agent-to-agent, health-monitoring, budget

安全使用建议
This skill is coherent: it simply wraps a paywalled translation API and requires a payment-proof value (NEXUS_PAYMENT_PROOF) which it sends to https://ai-service-hub-15.emergent.host. Before installing: 1) Verify and trust the external host (ai-service-hub-15.emergent.host) and the platform’s docs; there is no homepage provided in the package, so confirm the service independently. 2) Treat NEXUS_PAYMENT_PROOF as sensitive — use a sandbox/test token (the docs mention sandbox_test) for evaluation and avoid placing real payment credentials in shared agent env. 3) Consider the data you will send: all input is transmitted to the external service over HTTPS, so avoid sending PII or secrets. 4) If you will use the Stellar sponsorship flow, only POST signed XDRs you created with your own wallet; do not expose private keys to the agent. 5) Monitor usage and billing (price noted: $0.12/request) and restrict agent triggers if you are concerned about automated/unsupervised invocations consuming credits. 6) The README tags include unrelated terms (e.g., health-monitoring) — likely harmless but worth noting as sloppy metadata. If you need stronger assurance, ask the publisher for verifiable documentation or a canonical homepage and test with sandbox_test before providing any real payment proof.
功能分析
Type: OpenClaw Skill Name: nexus-translate Version: 1.1.0 The nexus-translate skill is a legitimate wrapper for a paid AI translation service hosted at ai-service-hub-15.emergent.host. It requires network access to communicate with its API and uses the NEXUS_PAYMENT_PROOF environment variable for authentication. The SKILL.md and README.md files provide clear instructions for handling HTTP 402 payment challenges and do not contain any malicious code, data exfiltration attempts, or harmful prompt injections.
能力标签
cryptocan-make-purchases
能力评估
Purpose & Capability
Name/description (translation) align with the SKILL.md: the skill purely documents calling an external translation API and payment flows. The single required env var (NEXUS_PAYMENT_PROOF) maps to the documented X-Payment-Proof/Authorization header and is coherent with a paid service.
Instruction Scope
Instructions tell the agent to POST input to https://ai-service-hub-15.emergent.host and to include payment headers/credentials. They do not instruct reading unrelated files or system paths. Note: the skill asks users to POST signed Stellar XDRs to a sponsorship endpoint — this requires caution but does not itself ask the agent to access private keys (it expects a pre-signed XDR).
Install Mechanism
Instruction-only; no install spec and no code is written to disk. This minimizes installation risk.
Credentials
Only a single env var (NEXUS_PAYMENT_PROOF) is required, which is proportionate for a paywalled API. However the variable is a secret-like artifact: if it represents a live payment credential, exposing it to the agent (or storing it in shared environment) could enable charges. The SKILL.md shows it being sent verbatim in request headers.
Persistence & Privilege
always is false and the skill has no install/persistence behavior. It does request network access in its instructions (expected for an external API). Autonomous invocation is allowed by default on the platform — not a problem here but note it could trigger network calls that consume the provided payment proof.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install nexus-translate
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /nexus-translate 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.1.0
Added x402 payment protocol (Coinbase/Masumi), multi-chain Cardano + Stellar documentation, 10 protocols
v1.0.0
Initial release
元数据
Slug nexus-translate
版本 1.1.0
许可证 MIT-0
累计安装 0
当前安装数 0
历史版本数 2
常见问题

NEXUS Translate 是什么?

High-quality translations with cultural awareness (50+ languages). 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 345 次。

如何安装 NEXUS Translate?

在 OpenClaw 或 Claude Code 对话框中运行命令「/install nexus-translate」即可一键安装,无需额外配置。

NEXUS Translate 是免费的吗?

是的,NEXUS Translate 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。

NEXUS Translate 支持哪些平台?

NEXUS Translate 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。

谁开发了 NEXUS Translate?

由 CyberForexBlockchain(@cyberforexblockchain)开发并维护,当前版本 v1.1.0。

💬 留言讨论