Token导航 LogoToken导航TokenDH.com
效率敏感数据clawhub未标认证来源可访问clear审计通过

aluraalura 测试

Agent Skill

alura 用于辅助测试设计、自动化测试和回归验证,适合在 OpenClaw 中需要补充测试、分析失败日志或验证功能改动时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

15,805

周安装

672

GitHub Stars

公开资料未说明

下载量

5,537
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:alura(alura 测试)
来源仓库:https://github.com/evilboyajay/alura
安装命令:
openclaw skills install alura
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install alura

简介

与 Alura Trading 测试网 API 集成,以使用不记名代币进行用户身份验证、交易会话、市场数据、排行榜、推荐和 USDC 验证。

SKILL.md

name
alura-backend-api
description
Integrate with Alura Trading backend API. Use when calling Alura testnet API, trading sessions, user auth, indicators, or leaderboard. Base URL: https://testnet-api.alura.fun

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>

Authentication (EVM Wallet)

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

MethodPathDescription
GET/trading-sessions/activeList active sessions
GET/trading-sessions/current-tradeCurrent trade with positions
GET/trading-sessions/:sessionId/logsSession logs
GET/trading-sessions/trades/:tradeId/logsTrade logs (paginated)
POST/trading-sessions/positions/:positionId/closeClose a position
POST/trading-sessions/positions/:positionId/close-signatureGet signed close tx for frontend
POST/trading-sessions/trades/:tradeId/closeClose trade (all positions)
POST/trading-sessions/trigger-cronManually trigger cron (testing)

User

Base path: /user. All require Bearer token.

MethodPathDescription
GET/user/profileCurrent user profile
POST/user/fills/syncSync fills from Hyperliquid
POST/user/withdrawWithdraw funds
POST/user/close-positionClose position by assetIndex
POST/user/close-all-positionsClose all positions
POST/user/send-usdcSend USDC
GET/auth/evm/trading-keyGet trading agent key (auth)
POST/user/claim-rewardClaim rewards

Indicators & Market Data

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

MethodPathDescription
GET/api/indicators/healthService health
GET/api/indicators/candles/latestLatest candles
GET/api/indicators/candles/history/:symbolHistorical candles
GET/api/indicators/candles/:symbol/:intervalCandles by symbol/interval
GET/api/indicators/candles/aggregated/symbolsAvailable symbols
GET/api/indicators/signals/:symbol/:intervalSignals for symbol
GET/api/indicators/signals/all/:intervalAll symbols signals

Leaderboard

Base path: /api/leaderboard.

MethodPathDescription
GET/api/leaderboard/statsLeaderboard stats
GET/api/leaderboard/rankingsRankings
GET/api/leaderboard/user/:userIdUser ranking
GET/api/leaderboard/analyticsAnalytics
GET/api/leaderboard/healthHealth

Referrals

Base path: /referrals.

MethodPathDescription
GET/referrals/:userIdUser referral info
GET/referrals/:userId/statsReferral stats
POST/referrals/:userId/codeCreate referral code
POST/referrals/checkCheck referral code

USDC Verification

Base path: /usdc-verification.

MethodPathDescription
POST/usdc-verification/verifyVerify USDC deposit
GET/usdc-verification/my-transactionsMy transactions
GET/usdc-verification/total-depositedTotal deposited

Health

MethodPathDescription
GET/healthBasic health
GET/health/kafkaKafka health

Asset Indices (Hyperliquid Perps)

Common perp asset indices:

SymbolIndex
BTC0
ETH1
SOL2
XRP3
DOGE4
AVAX5

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.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

70.96%
按下载量换算3,929

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

未展示

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills