From hyperliquid-trading-agent
Analyze one or more Hyperliquid markets and produce a buy/sell/hold recommendation with allocation, stop-loss, and take-profit. Use when the user asks "should I go long/short on X?", "what's the setup on BTC?", or asks for a market read on an asset.
How this skill is triggered — by the user, by Claude, or both
Slash command
/hyperliquid-trading-agent:market-analysisThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
You have access to the `hyperliquid-trading-agent` MCP server. Use these tools (do NOT make any market data assumptions from memory):
You have access to the hyperliquid-trading-agent MCP server. Use these tools (do NOT make any market data assumptions from memory):
get_market_context(asset, interval, count=200) — one-shot bundle of price + latest indicators + open interest + funding + last 20 candles.get_account_state() — only if the user wants a size recommendation (you need the balance).get_risk_limits() — to ground any allocation suggestion in the configured caps.For each asset the user mentions:
get_market_context with the user's interval (default 5m for scalping, 1h for swing, 4h/1d for longer holds).signal: buy / sell / holdconfidence: low / medium / high (and why)entry: market price now, or a limit pricestop_loss: price level (be specific — use ATR or recent swing)take_profit: price level (or multiple, R-multiples)allocation_usd: suggested size, capped by get_risk_limits()reasoning: 2–4 bullets on the actual signalhold — do not invent a thesis.max_position_pct of total_value.trade-cycle for execution.Creates, edits, and optimizes skills for Claude Code, including drafting, evaluating with test prompts, iterating on performance, and improving skill descriptions for better triggering accuracy.
npx claudepluginhub rsantamaria01/hyperliquid-trading-agent --plugin hyperliquid-trading-agent