← 返回 Skills 市场
taoshidev1

Hyperscaled Funded Account

作者 taoshidev · GitHub ↗ · v1.0.2 · MIT-0
cross-platform ⚠ suspicious
140
总下载
0
收藏
0
当前安装
3
版本数
在 OpenClaw 中安装
/install funded-account
功能描述
Interact with the Hyperscaled funded trading platform. Use when the user wants to check their trading account, view positions/orders, submit or cancel trades...
使用说明 (SKILL.md)

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 \x3Cyour-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

Area Command What it does
Account hyperscaled account info Full account status (balance, intraday & EOD drawdown, funded size, account type, current & max portfolio leverage, KYC)
Account hyperscaled account check-balance [--wallet 0x...] Check Hyperliquid wallet balance
Account hyperscaled account setup \x3Cwallet> Save wallet address to config
Config hyperscaled config show Display current config
Config hyperscaled config set \x3Csection> \x3Ckey> \x3Cvalue> Update a config value
Miners hyperscaled miners list List all funded-account providers
Miners hyperscaled miners info \x3Cslug> Details on a specific miner
Miners hyperscaled miners compare [slugs...] Side-by-side miner comparison
Register hyperscaled register purchase --miner \x3Cslug> --size \x3Camt> --email \x3Cemail> Purchase a funded account
Register hyperscaled register status [--hl-wallet 0x...] Check registration status
Register hyperscaled register poll [--hl-wallet 0x...] [--timeout 300] Poll until registration completes
Register hyperscaled register balance [--private-key 0x...] Check Base USDC payment balance
Trade hyperscaled trade submit \x3Cpair> \x3Cside> \x3Csize> \x3Ctype> [--price P] [--take-profit TP] [--stop-loss SL] [--size-in-usd] Submit a trade
Trade hyperscaled trade cancel \x3Corder_id> Cancel an order
Trade hyperscaled trade cancel-all Cancel all open orders
Positions hyperscaled positions open Show open positions (from Vanta validator)
Positions hyperscaled positions exchange Show open positions on Hyperliquid exchange
Positions hyperscaled positions compare Compare validator vs exchange positions, flag mismatches
Positions hyperscaled positions history [--from DATE] [--to DATE] [--pair PAIR] Closed position history
Orders hyperscaled orders open Show open orders
Orders hyperscaled orders history [--from DATE] [--to DATE] [--pair PAIR] Filled order history
Payouts hyperscaled payouts history Payout history
Payouts hyperscaled payouts pending Estimated next payout
Rules hyperscaled rules list All trading pairs and leverage limits
Rules hyperscaled rules supported-pairs List allowed trading pairs
Rules hyperscaled rules validate \x3Cpair> \x3Cside> \x3Csize> \x3Ctype> [--price P] Validate a trade against rules
KYC hyperscaled kyc status Check KYC verification status
KYC hyperscaled kyc start Begin KYC verification
Info hyperscaled info show Aggregated 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 \x3Csize> 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.
安全使用建议
This skill appears to be what it claims (a CLI/SDK for Hyperscaled funded accounts) but has a few practical risks you should consider before installing or using it: - Do not paste your private keys or other long-lived secrets into chat. Several commands accept a --private-key flag; prefer local signing, hardware wallets, or ephemeral keys. The agent can run Bash/Read, so avoid giving secrets in prompts. - The SKILL.md tells you to run `pip install hyperscaled`. Verify the package's provenance (PyPI page, GitHub repo, author) before installing — package installs can execute arbitrary code. - Understand that account setup will write to local CLI config. Back up any configs you care about and inspect created files (e.g., ~/.config/hyperscaled or similar) after use. - If you only need read-only queries (balances, open orders), prefer running the official CLI locally yourself and avoid granting the agent permission to install packages or access files. - If you must use this skill via the agent, require explicit, per-action confirmation for any trade or state-changing command, and never provide private keys in free-form text. Consider asking the skill author for a homepage or source repository to audit the client library. Given these gaps (unvetted install instruction and CLI flags that accept private keys without declared handling), proceed with caution and verify the package/source before trusting it with funds.
功能分析
Type: OpenClaw Skill Name: funded-account Version: 1.0.2 The skill bundle provides a legitimate interface for the Hyperscaled trading platform, allowing users to manage accounts, view positions, and execute trades via a CLI and Python SDK. It includes robust safety guidelines in SKILL.md, such as mandatory trade validation, user confirmation before execution, and explicit instructions to never expose or log private keys. No indicators of malicious intent, data exfiltration, or unauthorized execution were found.
能力评估
Purpose & Capability
Name and description match the instructions: the SKILL.md documents a CLI and SDK for managing Hyperscaled-funded trading accounts and trading actions. No unrelated services or credentials are requested in metadata.
Instruction Scope
The runtime instructions instruct the agent to install and run a third-party CLI (pip install hyperscaled) and to run many CLI commands. Several commands accept sensitive inputs (e.g., --private-key 0x...), and the skill allows tools such as Bash and Read, which would permit reading local files/configs. The skill does not declare any config paths or environment variables despite referring to saved configuration and private-key flags; that creates a risk that the agent could be used (or misuse prompts could lead it) to exfiltrate secrets or read local config files.
Install Mechanism
The skill is instruction-only (no install spec), but tells the agent to run `pip install hyperscaled`. Installing an unvetted PyPI package can execute arbitrary code during installation and is a moderate risk. The skill doesn't point to a vetted release repo or homepage to verify the package source.
Credentials
No environment variables are required by the skill metadata, yet the CLI supports passing private keys and saving wallet addresses to local config. Requesting or handling private keys is high-privilege and should be explicitly justified and declared; the absence of declared secrets while the instructions reference secret-bearing flags is disproportionate.
Persistence & Privilege
The skill does not request 'always' presence and does not declare system-wide modifications. It does instruct saving a wallet to the CLI config (local modification), which is normal for a CLI, but combined with the ability to run Bash/Read this could alter local config files — users should be aware of local state changes.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install funded-account
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /funded-account 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.0.2
- Updated SKILL.md to clarify and expand outputs for account, risk, and leverage monitoring. - "Account info" command now explicitly lists intraday & EOD drawdown, account type, and leverages. - Added guidance to highlight risk warnings: drawdown approaching limits and leverage near cap, making distinction between "challenge" and "funded" accounts (challenge = 1/4 leverage cap). - Adjusted output formatting and risk warnings accordingly. - No functional logic changes, only improvements in documentation and user guidance. - Renamed SKILL.md to uppercase for consistency; removed old skill.md.
v1.0.1
- Adds new commands for position reconciliation: `positions exchange` and `positions compare` - Updates the SDK usage and CLI command guide to support viewing and comparing positions from both the Vanta validator and Hyperliquid exchange - Expands intent mapping examples to cover the new position comparison and exchange views - No breaking changes; all previous functionality remains available
v1.0.0
Initial release of the Hyperscaled funded-account skill: - Enables interaction with the Hyperscaled funded trading platform via CLI and Python SDK. - Supports account management, trading, position/order tracking, miner browsing, registration, KYC, payouts, and trading rule checks. - Includes comprehensive CLI command mapping and usage guidance. - Enforces key safety behaviors: always validate trades, confirm before submitting, clarify missing details, and never expose private keys. - Clear output and error-handling expectations for user-friendly operation.
元数据
Slug funded-account
版本 1.0.2
许可证 MIT-0
累计安装 0
当前安装数 0
历史版本数 3
常见问题

Hyperscaled Funded Account 是什么?

Interact with the Hyperscaled funded trading platform. Use when the user wants to check their trading account, view positions/orders, submit or cancel trades... 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 140 次。

如何安装 Hyperscaled Funded Account?

在 OpenClaw 或 Claude Code 对话框中运行命令「/install funded-account」即可一键安装,无需额外配置。

Hyperscaled Funded Account 是免费的吗?

是的,Hyperscaled Funded Account 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。

Hyperscaled Funded Account 支持哪些平台?

Hyperscaled Funded Account 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。

谁开发了 Hyperscaled Funded Account?

由 taoshidev(@taoshidev1)开发并维护,当前版本 v1.0.2。

💬 留言讨论