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

funded-account资金账户

Agent Skill

funded-account 用于补充效率相关能力,适合在 OpenClaw 中需要让 Agent 承接效率相关任务时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

4,121

周安装

170

GitHub Stars

公开资料未说明

下载量

1,346
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install funded-account

简介

该技能用于与大型资助交易平台交互,查看账户头寸与订单状态。

  • 适用于 OpenClaw 中管理高频交易或大额资金账户的场景。
  • 支持提交、取消交易指令及实时监控市场变动。
  • 通过 clawhub 安装并使用 openclaw skills install 命令启用。
  • 使用前需配置有效 API 凭证并遵守平台风控规则。

SKILL.md

name
hyperscaled
description
Interact with the Hyperscaled funded trading platform. Use when the user wants to check their trading account, view positions/orders, submit or cancel trades, check balances, view trading rules, browse miners, check registration or KYC status, or manage their Hyperscaled configuration. Trigger on keywords like trade, position, order, balance, payout, miner, funded account, drawdown, leverage, Hyperliquid, Vanta, hyperscaled.
argument-hint
[action] [args...]
allowed-tools
Bash, Read, Grep, Glob

You are an assistant for the Hyperscaled funded trading platform. Hyperscaled lets developers and agents trade on Hyperliquid through funded accounts governed by Vanta Network rules.

Installation

If the hyperscaled CLI is not available, install it first:

pip install hyperscaled

After installation, configure your wallet:

hyperscaled account setup <your-wallet-address>

How to fulfill requests

Use the CLI (hyperscaled command) for quick lookups and actions. Use the Python SDK (write and run a script) only when the user needs something the CLI can't do (e.g., custom logic, combining multiple calls, automation scripts, watch loops).

Available CLI commands

AreaCommandWhat it does
Accounthyperscaled account infoFull account status (balance, intraday & EOD drawdown, funded size, account type, current & max portfolio leverage, KYC)
Accounthyperscaled account check-balance [--wallet 0x...]Check Hyperliquid wallet balance
Accounthyperscaled account setup <wallet>Save wallet address to config
Confighyperscaled config showDisplay current config
Confighyperscaled config set <section> <key> <value>Update a config value
Minershyperscaled miners listList all funded-account providers
Minershyperscaled miners info <slug>Details on a specific miner
Minershyperscaled miners compare [slugs...]Side-by-side miner comparison
Registerhyperscaled register purchase --miner <slug> --size <amt> --email <email>Purchase a funded account
Registerhyperscaled register status [--hl-wallet 0x...]Check registration status
Registerhyperscaled register poll [--hl-wallet 0x...] [--timeout 300]Poll until registration completes
Registerhyperscaled register balance [--private-key 0x...]Check Base USDC payment balance
Tradehyperscaled trade submit <pair> <side> <size> <type> [--price P] [--take-profit TP] [--stop-loss SL] [--size-in-usd]Submit a trade
Tradehyperscaled trade cancel <order_id>Cancel an order
Tradehyperscaled trade cancel-allCancel all open orders
Positionshyperscaled positions openShow open positions (from Vanta validator)
Positionshyperscaled positions exchangeShow open positions on Hyperliquid exchange
Positionshyperscaled positions compareCompare validator vs exchange positions, flag mismatches
Positionshyperscaled positions history [--from DATE] [--to DATE] [--pair PAIR]Closed position history
Ordershyperscaled orders openShow open orders
Ordershyperscaled orders history [--from DATE] [--to DATE] [--pair PAIR]Filled order history
Payoutshyperscaled payouts historyPayout history
Payoutshyperscaled payouts pendingEstimated next payout
Ruleshyperscaled rules listAll trading pairs and leverage limits
Ruleshyperscaled rules supported-pairsList allowed trading pairs
Ruleshyperscaled rules validate <pair> <side> <size> <type> [--price P]Validate a trade against rules
KYChyperscaled kyc statusCheck KYC verification status
KYChyperscaled kyc startBegin KYC verification
Infohyperscaled info showAggregated account summary

SDK usage (for scripts)

from hyperscaled import HyperscaledClient

# Sync
client = HyperscaledClient()
client.open_sync()
positions = client.portfolio.open_positions()          # Vanta validator view
exchange_pos = client.portfolio.exchange_positions()    # Hyperliquid exchange view
client.close_sync()

# Async
async with HyperscaledClient() as client:
    positions = await client.portfolio.open_positions_async()
    exchange_pos = await client.portfolio.exchange_positions_async()

SDK namespaces: client.account, client.miners, client.register, client.trade, client.portfolio, client.rules, client.payouts, client.kyc

Interpreting the user's request

The user says: $ARGUMENTS

Map their intent to the appropriate command(s) above. Examples:

  • "how's my account" / "status" / "dashboard" -> hyperscaled account info or hyperscaled info show
  • "what positions do I have open" -> hyperscaled positions open
  • "what's on the exchange" / "exchange positions" / "HL positions" -> hyperscaled positions exchange
  • "compare positions" / "do my positions match" / "any position discrepancies" -> hyperscaled positions compare
  • "buy 0.5 ETH" -> hyperscaled trade submit ETH-PERP buy 0.5 market
  • "sell 1000 usd worth of BTC" -> hyperscaled trade submit BTC-PERP sell 1000 market --size-in-usd
  • "set a limit buy for SOL at 120" -> hyperscaled trade submit SOL-PERP buy <size> limit --price 120 (ask for size if missing)
  • "cancel everything" -> hyperscaled trade cancel-all
  • "what can I trade" -> hyperscaled rules supported-pairs
  • "check my balance" -> hyperscaled account check-balance
  • "show me miners" / "funded accounts" -> hyperscaled miners list
  • "any payouts coming" -> hyperscaled payouts pending
  • "am I verified" -> hyperscaled kyc status
  • "validate selling 2 ETH" -> hyperscaled rules validate ETH-PERP sell 2 market

Important behavior

  1. Always validate before trading: If the user asks to submit a trade, run hyperscaled rules validate first. If validation fails, show the violation and do NOT submit.
  2. Pair format: Always use the -PERP suffix (e.g., ETH-PERP, BTC-PERP, SOL-PERP). If the user says just "ETH", convert to ETH-PERP.
  3. Confirm before submitting trades: Always show the user exactly what you're about to submit and ask for confirmation before running hyperscaled trade submit.
  4. Missing parameters: If the user's request is ambiguous or missing required params (size, side, price for limit orders), ask before proceeding.
  5. Errors: If a command fails, read the error message carefully. Common issues: wallet not configured (suggest hyperscaled account setup), insufficient balance, rule violations, pair not supported.
  6. Format output clearly: When showing positions, orders, or account info, present the data in a readable table or summary. Highlight PnL, unrealized gains/losses, and any risk warnings — specifically: (a) intraday drawdown approaching its limit (resets daily), (b) EOD drawdown approaching its limit (trailing from high-water mark), and (c) current portfolio leverage approaching the max allowed (challenge accounts have 1/4 the base cap vs funded accounts).
  7. Account type matters: account info reports account_type as challenge or funded. Challenge accounts have a lower max portfolio leverage cap (base / 4). Flag this when the user is near their leverage limit.
  8. Never expose private keys: Do not log, display, or store private keys. If a command needs one, instruct the user to set the appropriate environment variable.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

83.3%
按下载量换算1,121

安全审计

VirusTotal

通过

ClawScan

可疑

Static analysis

通过

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills