# Send Alura to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.
```
### Upgrade existing

```text
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "alura",
    "name": "Alura",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/evilboyajay/alura",
    "canonicalUrl": "https://clawhub.ai/evilboyajay/alura",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/alura",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=alura",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-23T16:43:11.935Z",
      "expiresAt": "2026-04-30T16:43:11.935Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=4claw-imageboard",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=4claw-imageboard",
        "contentDisposition": "attachment; filename=\"4claw-imageboard-1.0.1.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/alura"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/alura",
    "downloadUrl": "https://openagent3.xyz/downloads/alura",
    "agentUrl": "https://openagent3.xyz/skills/alura/agent",
    "manifestUrl": "https://openagent3.xyz/skills/alura/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/alura/agent.md"
  }
}
```
## Documentation

### Alura Backend API

Use this skill when integrating with or calling the Alura Trading backend API. The testnet API base URL is https://testnet-api.alura.fun.

### Base URL

https://testnet-api.alura.fun

Swagger docs: https://testnet-api.alura.fun/api/docs
All authenticated endpoints require Authorization: Bearer <JWT>

### 1. Get challenge

POST /auth/evm/challenge
Content-Type: application/json

{ "address": "0x..." }

Returns { address, nonce, message }.

### 2. Sign & verify

User signs message with MetaMask (personal_sign). Then:

POST /auth/evm/verify
Content-Type: application/json

{ "address": "0x...", "signature": "0x...", "referralCode": "OPTIONAL" }

Returns { ok: true, accessToken, tokenType: "Bearer", expiresIn: 86400, ... }. Use accessToken for subsequent requests.

### Trading Sessions

Base path: /trading-sessions. All require Bearer token.

### Quick trade – create session

POST /trading-sessions
Authorization: Bearer <token>
Content-Type: application/json

{
  "budget": 100,
  "profitTarget": 40,
  "lossThreshold": 5,
  "maxPositions": 3,
  "assetIndex": 0
}

Required: budget (min 10), profitTarget (max 500), assetIndex (Hyperliquid perp index: 0=BTC, 1=ETH, 2=SOL, etc.).

### Advance trade – create session

POST /trading-sessions/advance
Authorization: Bearer <token>
Content-Type: application/json

{
  "amount": 100,
  "executionStrategy": "Conservative" | "Aggressive" | "Degen",
  "strategyDuration": "1D" | "3D" | "7D" | "30D" | "90D" | "365D",
  "assetIndex": 0,
  "maxWalletBudget": false
}

### Other trading endpoints

MethodPathDescriptionGET/trading-sessions/activeList active sessionsGET/trading-sessions/current-tradeCurrent trade with positionsGET/trading-sessions/:sessionId/logsSession logsGET/trading-sessions/trades/:tradeId/logsTrade logs (paginated)POST/trading-sessions/positions/:positionId/closeClose a positionPOST/trading-sessions/positions/:positionId/close-signatureGet signed close tx for frontendPOST/trading-sessions/trades/:tradeId/closeClose trade (all positions)POST/trading-sessions/trigger-cronManually trigger cron (testing)

### User

Base path: /user. All require Bearer token.

MethodPathDescriptionGET/user/profileCurrent user profilePOST/user/fills/syncSync fills from HyperliquidPOST/user/withdrawWithdraw fundsPOST/user/close-positionClose position by assetIndexPOST/user/close-all-positionsClose all positionsPOST/user/send-usdcSend USDCGET/auth/evm/trading-keyGet trading agent key (auth)POST/user/claim-rewardClaim rewards

### Indicators & Market Data

Base path: /api/indicators. Most are public.

MethodPathDescriptionGET/api/indicators/healthService healthGET/api/indicators/candles/latestLatest candlesGET/api/indicators/candles/history/:symbolHistorical candlesGET/api/indicators/candles/:symbol/:intervalCandles by symbol/intervalGET/api/indicators/candles/aggregated/symbolsAvailable symbolsGET/api/indicators/signals/:symbol/:intervalSignals for symbolGET/api/indicators/signals/all/:intervalAll symbols signals

### Leaderboard

Base path: /api/leaderboard.

MethodPathDescriptionGET/api/leaderboard/statsLeaderboard statsGET/api/leaderboard/rankingsRankingsGET/api/leaderboard/user/:userIdUser rankingGET/api/leaderboard/analyticsAnalyticsGET/api/leaderboard/healthHealth

### Referrals

Base path: /referrals.

MethodPathDescriptionGET/referrals/:userIdUser referral infoGET/referrals/:userId/statsReferral statsPOST/referrals/:userId/codeCreate referral codePOST/referrals/checkCheck referral code

### USDC Verification

Base path: /usdc-verification.

MethodPathDescriptionPOST/usdc-verification/verifyVerify USDC depositGET/usdc-verification/my-transactionsMy transactionsGET/usdc-verification/total-depositedTotal deposited

### Health

MethodPathDescriptionGET/healthBasic healthGET/health/kafkaKafka health

### Asset Indices (Hyperliquid Perps)

Common perp asset indices:

SymbolIndexBTC0ETH1SOL2XRP3DOGE4AVAX5

### Error Handling

401: Missing/invalid Bearer token. Re-auth via /auth/evm/challenge and /auth/evm/verify.
400: Validation error. Check message in response body.
429: Rate limit. Retry with backoff.
Common messages: Duplicate asset index: you already have an active trading session for this asset, Builder fee approval failed: HTTP request failed: status 429.
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: evilboyajay
- Version: 1.0.0
## Source health
- Status: healthy
- Source download looks usable.
- Yavira can redirect you to the upstream package for this source.
- Health scope: source
- Reason: direct_download_ok
- Checked at: 2026-04-23T16:43:11.935Z
- Expires at: 2026-04-30T16:43:11.935Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/alura)
- [Send to Agent page](https://openagent3.xyz/skills/alura/agent)
- [JSON manifest](https://openagent3.xyz/skills/alura/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/alura/agent.md)
- [Download page](https://openagent3.xyz/downloads/alura)