Nexura
HomeConsoleStoreTutorial

Usage Guide

AI Coding Tools Installation & Configuration Guide

01
endpoint · live/ 01

Platform API Base URL

v1

OPENAI · COMPATIBLE · ENDPOINT

$https://your-domain.com/api/nexura/v1
02

select · tools

Choose your tool

Only Claude Code is available now. More tools are coming soon.

03

install · script

Installation script

macOS / Linux - Claude Code

Run this script in your terminal

$curl -s https://nexura.startupper.space/setup-claudecode.sh | bash -s -- --url https://nexura.startupper.space/api/nexura --key nxr-xxxxxxxxxxxx

This script automatically detects your system, installs required dependencies, and configures environment variables. After it finishes, please reopen the terminal to start using the tool.

Windows - Claude Code

Run this script in PowerShell as Administrator

$& { $url="https://nexura.startupper.space/api/nexura"; $key="nxr-xxxxxxxxxxxx"; iex ([Text.Encoding]::UTF8.GetString((New-Object Net.WebClient).DownloadData('https://nexura.startupper.space/setup-claudecode.ps1'))) }

This script automatically detects your system, installs required dependencies, and configures environment variables. After it finishes, please reopen PowerShell. If you see a permission error, run [Set-ExecutionPolicy RemoteSigned -Scope CurrentUser -Force] as Administrator and try again.

04

catalog · models

Available Models

Below are the currently available models on the platform. Use the Model ID when configuring your tools.

No models available
05

reference · errors

Error Code Reference

Error CodeHTTPMeaningCommon CauseSolution
AI0001400Invalid RequestMalformed request body or missing required fieldsCheck JSON format and required parameters
AI0002401Invalid API KeyAPI Key does not exist or has wrong formatVerify API Key and environment variable settings
AI0003403API Key DisabledKey has been disabled or revoked by adminContact admin or create a new API Key
AI0004403Quota ExhaustedInsufficient available quotaPurchase a package or top up quota
AI0005429Rate LimitedExceeded API Key or group RPM limitReduce request frequency or upgrade group
AI0006400Model Not FoundRequested model ID not in platform model listCheck model name spelling, refer to the model list below
AI0007403Model Not AllowedCurrent group or package does not include this modelUpgrade package or contact admin for access
AI0008502Upstream ErrorProvider API returned an errorRetry later; contact admin if persistent
AI0009504Upstream TimeoutProvider API response timed outReduce input length or retry later
AI0010503No Available ChannelAll channels are unavailable or under maintenanceRetry later; contact admin if persistent
AI0011400Parameter Validation FailedRequest parameters do not meet requirementsCheck parameter types and value ranges
AI0012413Content Too LargeRequest body exceeds size limitReduce input content length
AI0013500Internal Server ErrorPlatform internal exceptionRetry later; contact admin if persistent
AI0014402Insufficient BalanceBalance insufficient during quota pre-deductionTop up or purchase a package
AI0015429Concurrent Limit ExceededToo many simultaneous requests for your groupWait for current requests to complete before sending new ones
06

help · faq

FAQ

What if the 'claude' command is not found?▾

Windows users: make sure PowerShell was run as Administrator during installation. macOS/Linux users: reopen the terminal or run source ~/.zshrc (or ~/.bashrc). If installed via npm, ensure the Node.js global bin directory is in your PATH.

What if the 'codex' command is not found?▾

Verify Node.js version ≥ 18 (run node --version). Ensure the npm global install directory is in your system PATH. Windows users can try restarting PowerShell. macOS/Linux users can run npm config get prefix to check the global directory.

What if the tool fails to connect to the platform?▾

Check: 1) OPENAI_API_KEY and OPENAI_BASE_URL environment variables are set correctly; 2) The API Key is valid (not revoked); 3) Your network can reach the platform URL. You can test connectivity with a curl command.

How to specify which model to use in the tool?▾

Claude Code uses the --model flag (e.g., claude --provider openai --model gpt-4o). Codex CLI uses the --model flag (e.g., codex --model gpt-4o). See the model list above for available models.

What if I get an insufficient quota error during use?▾

Check your remaining quota on the Dashboard. If exhausted, purchase a package or use a redemption code. AI coding tools consume many tokens — choose a package with sufficient quota.

How to handle rate limiting (429) errors?▾

Tools usually retry automatically. If it happens frequently, your request rate exceeds the group limit. Suggestions: 1) Reduce concurrent operations; 2) Upgrade to a higher group for higher RPM limits.