From hakari
Check current account state: open positions, daily P&L, exposure, regime, and circuit breaker status. Quick read-only snapshot — no pipeline execution.
How this skill is triggered — by the user, by Claude, or both
Slash command
/hakari:trade-statusThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Check current account state: open positions, daily P&L, exposure, regime, and circuit breaker status. Quick read-only snapshot — no pipeline execution.
Check current account state: open positions, daily P&L, exposure, regime, and circuit breaker status. Quick read-only snapshot — no pipeline execution.
/trade-status — full account status report (no arguments needed)${CLAUDE_PLUGIN_ROOT}/skills/shared/tool-map.md — MCP tool names and parametersmcp__alpaca__get_account_info — account equity, buying power, daily P&Lmcp__alpaca__get_all_positions — all open positions with current market valuemcp__alpaca__get_clock — market open/close status and next open timeCall all three MCP tools in parallel:
mcp__alpaca__get_account_info -> account equity, buying power, daily P&Lmcp__alpaca__get_all_positions -> open positions arraymcp__alpaca__get_clock -> market statusFrom the gathered data, calculate:
abs(market_value) across all positionsQuick regime check based on available data:
ACCOUNT STATUS -- YYYY-MM-DD HH:MM ET
=======================================
Market: OPEN | CLOSED (next open: Day HH:MM ET)
Regime: BULL | CORRECTION | BEAR | CRISIS | RECOVERY | UNKNOWN
ACCOUNT
Equity: $XX,XXX.XX
Buying Power: $XX,XXX.XX
Daily P&L: +/-$XXX.XX (X.X%)
EXPOSURE
Total: $XX,XXX (XX.X% of equity)
Long: $XX,XXX
Short: $XX,XXX
Ceiling: XX% (from last Hook 1)
Headroom: $XX,XXX until ceiling
POSITIONS (N/5 max)
TICKER | DIR | QTY | ENTRY | CURRENT | P&L | % MOVE
--------|------|-----|---------|---------|----------|--------
AAPL | LONG | 10 | $185.00 | $187.50 | +$25.00 | +1.4%
...
RISK STATUS
Circuit breaker: CLEAR | WARNING | TRIGGERED
Consecutive losses: N
Position limit: N/5
ALERTS
[any flags: approaching limits, concentration, etc.]
npx claudepluginhub jedinight/hakariCreates, edits, and optimizes skills for Claude Code, including drafting, evaluating with test prompts, iterating on performance, and improving skill descriptions for better triggering accuracy.