← Back to Skills Marketplace
cyberforexblockchain

NEXUS Llm Gateway

by CyberForexBlockchain · GitHub ↗ · v1.1.0 · MIT-0
cross-platform ✓ Security Clean
340
Downloads
0
Stars
0
Active Installs
2
Versions
Install in OpenClaw
/install nexus-llm-gateway
Description
Smart multi-model AI gateway on Cardano. Routes prompts to the best LLM (GPT-5.2, Claude Sonnet 4.5, GPT-4o, Claude Haiku 4.5, GPT-4o-mini) with automatic fa...
README (SKILL.md)

LLM Gateway

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

When to use

Use when you need to call any LLM (GPT-5.2, Claude Sonnet 4.5, GPT-4o, Claude Haiku 4.5, GPT-4o-mini) through one endpoint. Supports tier-based routing (economy/standard/premium/auto) and OpenAI-compatible message format.

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/llm-gateway \
  -H "Content-Type: application/json" \
  -H "X-Payment-Proof: $NEXUS_PAYMENT_PROOF" \
  -d '{"prompt": "Write a Python function to sort a list", "tier": "auto", "task_type": "code"}'

Endpoint: https://ai-service-hub-15.emergent.host/api/original-services/llm-gateway 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/llm-gateway 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

llm, ai, gateway, multi-model, gpt, claude, router, cardano

Usage Guidance
This skill appears to be what it says: a paid LLM gateway that routes prompts to external LLMs and requires a payment proof credential. Before installing: (1) Confirm you trust the external host (https://ai-service-hub-15.emergent.host) and the skill owner—there's no homepage provided. (2) Treat NEXUS_PAYMENT_PROOF as a secret and avoid putting high-value credentials there until you verify the service. (3) When testing, use the sandbox_test option per the docs to avoid real payments. (4) Understand that your prompts and any payment proofs or signed XDRs will be sent to the provider; do not send sensitive data unless you accept that disclosure. (5) If you need stronger assurance, ask the publisher for provenance (TLS certs, documentation, or an official homepage) before using real funds.
Capability Analysis
Type: OpenClaw Skill Name: nexus-llm-gateway Version: 1.1.0 The nexus-llm-gateway skill is a standard API wrapper for an external multi-model AI gateway service hosted at emergent.host. It correctly requests only network permissions, lacks any filesystem or shell access, and follows a documented payment protocol (MPP/Masumi) for its stated purpose. No indicators of data exfiltration, malicious execution, or prompt injection were found in SKILL.md or README.md.
Capability Tags
cryptocan-make-purchases
Capability Assessment
Purpose & Capability
The skill claims to be a paid multi-model LLM gateway and its instructions, headers, and accepted currencies align with that purpose. The single required env var (NEXUS_PAYMENT_PROOF) is appropriate for the legacy payment header described and is declared as the primary credential.
Instruction Scope
Runtime instructions direct network calls to https://ai-service-hub-15.emergent.host and describe payment flows (x402 / MPP / Masumi / Stellar). The skill does not ask the agent to read files, run shell commands, or access other environment variables. However, it will transmit user prompts and payment proofs/signed XDRs to a third-party endpoint, which has privacy and trust implications.
Install Mechanism
Instruction-only skill with no install spec and no code files — minimal install risk and nothing is written to disk by the skill itself.
Credentials
Only NEXUS_PAYMENT_PROOF is required, which is proportionate to a paid gateway. This value is sensitive (represents payment credentials/IDs); treat it like a secret. The README/skill also requires the user to provide signed Stellar XDRs in some flows, which may expose transaction data to the service—expected for the payment protocol but notable for privacy.
Persistence & Privilege
The skill does not request always:true and is not asking to modify other skills or system config. Network permission is needed (declared). No filesystem or shell access is requested.
How to Use
  1. Make sure OpenClaw is installed (local or Docker)
  2. Run the install command in chat: /install nexus-llm-gateway
  3. After installation, invoke the skill by name or use /nexus-llm-gateway
  4. Provide required inputs per the skill's parameter spec and get structured output
Version History
v1.1.0
Added x402 payment protocol (Coinbase/Masumi), multi-chain Cardano + Stellar documentation, 10 protocols
v1.0.0
Initial release - Smart multi-model AI gateway on Cardano
Metadata
Slug nexus-llm-gateway
Version 1.1.0
License MIT-0
All-time Installs 0
Active Installs 0
Total Versions 2
Frequently Asked Questions

What is NEXUS Llm Gateway?

Smart multi-model AI gateway on Cardano. Routes prompts to the best LLM (GPT-5.2, Claude Sonnet 4.5, GPT-4o, Claude Haiku 4.5, GPT-4o-mini) with automatic fa... It is an AI Agent Skill for Claude Code / OpenClaw, with 340 downloads so far.

How do I install NEXUS Llm Gateway?

Run "/install nexus-llm-gateway" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.

Is NEXUS Llm Gateway free?

Yes, NEXUS Llm Gateway is completely free, licensed under MIT-0. You can download, install and use it at no cost.

Which platforms does NEXUS Llm Gateway support?

NEXUS Llm Gateway is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).

Who created NEXUS Llm Gateway?

It is built and maintained by CyberForexBlockchain (@cyberforexblockchain); the current version is v1.1.0.

💬 Comments