From hyperliquid-trading-agent
Review the current Hyperliquid portfolio — open positions, PnL, exposure, recent fills. Use when the user asks "how are my positions doing?", "what's my PnL?", "show me my open trades", or wants a daily/weekly portfolio check.
How this skill is triggered — by the user, by Claude, or both
Slash command
/hyperliquid-trading-agent:portfolio-reviewThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Uses the `hyperliquid-trading-agent` MCP server. Read-only — does not place or close anything unless the user explicitly asks.
Uses the hyperliquid-trading-agent MCP server. Read-only — does not place or close anything unless the user explicitly asks.
trading_mode() — confirm DRY-RUN vs LIVE in one line at the top.get_account_state() — balance, total_value, positions with PnL.get_open_orders() — any resting limit or trigger orders (TP/SL).get_recent_fills(limit=20) — last 20 fills for context.get_risk_limits() — current caps and whether the daily circuit breaker is active.Lead with the headline numbers:
Then a compact table of open positions:
| Asset | Side | Size | Entry | Mark | PnL | PnL % | SL | TP |
Then any open orders. Then recent fills if interesting.
Close with one line on risk posture: are any positions close to the loss-cap? Is exposure near the limit?
loss_pct >= 0.8 * max_loss_per_position_pct, flag it and ask if the user wants to close.circuit_breaker_active, surface that prominently.set_stop_loss.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