{
  "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": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/alura",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=alura",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md"
    ],
    "primaryDoc": "SKILL.md",
    "quickSetup": [
      "Download the package from Yavira.",
      "Extract the archive and review SKILL.md first.",
      "Import or place the package into your OpenClaw setup."
    ],
    "agentAssist": {
      "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
      "steps": [
        "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."
      ],
      "prompts": [
        {
          "label": "New install",
          "body": "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."
        },
        {
          "label": "Upgrade existing",
          "body": "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."
        }
      ]
    },
    "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."
      ]
    },
    "downloadPageUrl": "https://openagent3.xyz/downloads/alura",
    "agentPageUrl": "https://openagent3.xyz/skills/alura/agent",
    "manifestUrl": "https://openagent3.xyz/skills/alura/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/alura/agent.md"
  },
  "agentAssist": {
    "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
    "steps": [
      "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."
    ],
    "prompts": [
      {
        "label": "New install",
        "body": "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."
      },
      {
        "label": "Upgrade existing",
        "body": "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."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "Alura Backend API",
        "body": "Use this skill when integrating with or calling the Alura Trading backend API. The testnet API base URL is https://testnet-api.alura.fun."
      },
      {
        "title": "Base URL",
        "body": "https://testnet-api.alura.fun\n\nSwagger docs: https://testnet-api.alura.fun/api/docs\nAll authenticated endpoints require Authorization: Bearer <JWT>"
      },
      {
        "title": "1. Get challenge",
        "body": "POST /auth/evm/challenge\nContent-Type: application/json\n\n{ \"address\": \"0x...\" }\n\nReturns { address, nonce, message }."
      },
      {
        "title": "2. Sign & verify",
        "body": "User signs message with MetaMask (personal_sign). Then:\n\nPOST /auth/evm/verify\nContent-Type: application/json\n\n{ \"address\": \"0x...\", \"signature\": \"0x...\", \"referralCode\": \"OPTIONAL\" }\n\nReturns { ok: true, accessToken, tokenType: \"Bearer\", expiresIn: 86400, ... }. Use accessToken for subsequent requests."
      },
      {
        "title": "Trading Sessions",
        "body": "Base path: /trading-sessions. All require Bearer token."
      },
      {
        "title": "Quick trade – create session",
        "body": "POST /trading-sessions\nAuthorization: Bearer <token>\nContent-Type: application/json\n\n{\n  \"budget\": 100,\n  \"profitTarget\": 40,\n  \"lossThreshold\": 5,\n  \"maxPositions\": 3,\n  \"assetIndex\": 0\n}\n\nRequired: budget (min 10), profitTarget (max 500), assetIndex (Hyperliquid perp index: 0=BTC, 1=ETH, 2=SOL, etc.)."
      },
      {
        "title": "Advance trade – create session",
        "body": "POST /trading-sessions/advance\nAuthorization: Bearer <token>\nContent-Type: application/json\n\n{\n  \"amount\": 100,\n  \"executionStrategy\": \"Conservative\" | \"Aggressive\" | \"Degen\",\n  \"strategyDuration\": \"1D\" | \"3D\" | \"7D\" | \"30D\" | \"90D\" | \"365D\",\n  \"assetIndex\": 0,\n  \"maxWalletBudget\": false\n}"
      },
      {
        "title": "Other trading endpoints",
        "body": "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)"
      },
      {
        "title": "User",
        "body": "Base path: /user. All require Bearer token.\n\nMethodPathDescriptionGET/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"
      },
      {
        "title": "Indicators & Market Data",
        "body": "Base path: /api/indicators. Most are public.\n\nMethodPathDescriptionGET/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"
      },
      {
        "title": "Leaderboard",
        "body": "Base path: /api/leaderboard.\n\nMethodPathDescriptionGET/api/leaderboard/statsLeaderboard statsGET/api/leaderboard/rankingsRankingsGET/api/leaderboard/user/:userIdUser rankingGET/api/leaderboard/analyticsAnalyticsGET/api/leaderboard/healthHealth"
      },
      {
        "title": "Referrals",
        "body": "Base path: /referrals.\n\nMethodPathDescriptionGET/referrals/:userIdUser referral infoGET/referrals/:userId/statsReferral statsPOST/referrals/:userId/codeCreate referral codePOST/referrals/checkCheck referral code"
      },
      {
        "title": "USDC Verification",
        "body": "Base path: /usdc-verification.\n\nMethodPathDescriptionPOST/usdc-verification/verifyVerify USDC depositGET/usdc-verification/my-transactionsMy transactionsGET/usdc-verification/total-depositedTotal deposited"
      },
      {
        "title": "Health",
        "body": "MethodPathDescriptionGET/healthBasic healthGET/health/kafkaKafka health"
      },
      {
        "title": "Asset Indices (Hyperliquid Perps)",
        "body": "Common perp asset indices:\n\nSymbolIndexBTC0ETH1SOL2XRP3DOGE4AVAX5"
      },
      {
        "title": "Error Handling",
        "body": "401: Missing/invalid Bearer token. Re-auth via /auth/evm/challenge and /auth/evm/verify.\n400: Validation error. Check message in response body.\n429: Rate limit. Retry with backoff.\nCommon messages: Duplicate asset index: you already have an active trading session for this asset, Builder fee approval failed: HTTP request failed: status 429."
      }
    ],
    "body": "Alura Backend API\n\nUse this skill when integrating with or calling the Alura Trading backend API. The testnet API base URL is https://testnet-api.alura.fun.\n\nBase URL\nhttps://testnet-api.alura.fun\n\nSwagger docs: https://testnet-api.alura.fun/api/docs\nAll authenticated endpoints require Authorization: Bearer <JWT>\nAuthentication (EVM Wallet)\n1. Get challenge\nPOST /auth/evm/challenge\nContent-Type: application/json\n\n{ \"address\": \"0x...\" }\n\n\nReturns { address, nonce, message }.\n\n2. Sign & verify\n\nUser signs message with MetaMask (personal_sign). Then:\n\nPOST /auth/evm/verify\nContent-Type: application/json\n\n{ \"address\": \"0x...\", \"signature\": \"0x...\", \"referralCode\": \"OPTIONAL\" }\n\n\nReturns { ok: true, accessToken, tokenType: \"Bearer\", expiresIn: 86400, ... }. Use accessToken for subsequent requests.\n\nTrading Sessions\n\nBase path: /trading-sessions. All require Bearer token.\n\nQuick trade – create session\nPOST /trading-sessions\nAuthorization: Bearer <token>\nContent-Type: application/json\n\n{\n  \"budget\": 100,\n  \"profitTarget\": 40,\n  \"lossThreshold\": 5,\n  \"maxPositions\": 3,\n  \"assetIndex\": 0\n}\n\n\nRequired: budget (min 10), profitTarget (max 500), assetIndex (Hyperliquid perp index: 0=BTC, 1=ETH, 2=SOL, etc.).\n\nAdvance trade – create session\nPOST /trading-sessions/advance\nAuthorization: Bearer <token>\nContent-Type: application/json\n\n{\n  \"amount\": 100,\n  \"executionStrategy\": \"Conservative\" | \"Aggressive\" | \"Degen\",\n  \"strategyDuration\": \"1D\" | \"3D\" | \"7D\" | \"30D\" | \"90D\" | \"365D\",\n  \"assetIndex\": 0,\n  \"maxWalletBudget\": false\n}\n\nOther trading endpoints\nMethod\tPath\tDescription\nGET\t/trading-sessions/active\tList active sessions\nGET\t/trading-sessions/current-trade\tCurrent trade with positions\nGET\t/trading-sessions/:sessionId/logs\tSession logs\nGET\t/trading-sessions/trades/:tradeId/logs\tTrade logs (paginated)\nPOST\t/trading-sessions/positions/:positionId/close\tClose a position\nPOST\t/trading-sessions/positions/:positionId/close-signature\tGet signed close tx for frontend\nPOST\t/trading-sessions/trades/:tradeId/close\tClose trade (all positions)\nPOST\t/trading-sessions/trigger-cron\tManually trigger cron (testing)\nUser\n\nBase path: /user. All require Bearer token.\n\nMethod\tPath\tDescription\nGET\t/user/profile\tCurrent user profile\nPOST\t/user/fills/sync\tSync fills from Hyperliquid\nPOST\t/user/withdraw\tWithdraw funds\nPOST\t/user/close-position\tClose position by assetIndex\nPOST\t/user/close-all-positions\tClose all positions\nPOST\t/user/send-usdc\tSend USDC\nGET\t/auth/evm/trading-key\tGet trading agent key (auth)\nPOST\t/user/claim-reward\tClaim rewards\nIndicators & Market Data\n\nBase path: /api/indicators. Most are public.\n\nMethod\tPath\tDescription\nGET\t/api/indicators/health\tService health\nGET\t/api/indicators/candles/latest\tLatest candles\nGET\t/api/indicators/candles/history/:symbol\tHistorical candles\nGET\t/api/indicators/candles/:symbol/:interval\tCandles by symbol/interval\nGET\t/api/indicators/candles/aggregated/symbols\tAvailable symbols\nGET\t/api/indicators/signals/:symbol/:interval\tSignals for symbol\nGET\t/api/indicators/signals/all/:interval\tAll symbols signals\nLeaderboard\n\nBase path: /api/leaderboard.\n\nMethod\tPath\tDescription\nGET\t/api/leaderboard/stats\tLeaderboard stats\nGET\t/api/leaderboard/rankings\tRankings\nGET\t/api/leaderboard/user/:userId\tUser ranking\nGET\t/api/leaderboard/analytics\tAnalytics\nGET\t/api/leaderboard/health\tHealth\nReferrals\n\nBase path: /referrals.\n\nMethod\tPath\tDescription\nGET\t/referrals/:userId\tUser referral info\nGET\t/referrals/:userId/stats\tReferral stats\nPOST\t/referrals/:userId/code\tCreate referral code\nPOST\t/referrals/check\tCheck referral code\nUSDC Verification\n\nBase path: /usdc-verification.\n\nMethod\tPath\tDescription\nPOST\t/usdc-verification/verify\tVerify USDC deposit\nGET\t/usdc-verification/my-transactions\tMy transactions\nGET\t/usdc-verification/total-deposited\tTotal deposited\nHealth\nMethod\tPath\tDescription\nGET\t/health\tBasic health\nGET\t/health/kafka\tKafka health\nAsset Indices (Hyperliquid Perps)\n\nCommon perp asset indices:\n\nSymbol\tIndex\nBTC\t0\nETH\t1\nSOL\t2\nXRP\t3\nDOGE\t4\nAVAX\t5\nError Handling\n401: Missing/invalid Bearer token. Re-auth via /auth/evm/challenge and /auth/evm/verify.\n400: Validation error. Check message in response body.\n429: Rate limit. Retry with backoff.\nCommon messages: Duplicate asset index: you already have an active trading session for this asset, Builder fee approval failed: HTTP request failed: status 429."
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/evilboyajay/alura",
    "publisherUrl": "https://clawhub.ai/evilboyajay/alura",
    "owner": "evilboyajay",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "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"
  }
}