From kraken-cli
Enforces operational risk controls for live Kraken trading sessions with dead-man switches, mass cancels, position checks, and failure handling. Use before automating live trades.
How this skill is triggered — by the user, by Claude, or both
Slash command
/kraken-cli:kraken-risk-operationsThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Use this skill to reduce live-trading risk during automation.
Use this skill to reduce live-trading risk during automation.
--validate.Dead-man switch:
kraken order cancel-after 60 -o json 2>/dev/null
Mass cancel:
kraken order cancel-all -o json 2>/dev/null
kraken futures cancel-all -o json 2>/dev/null
Position visibility:
kraken open-orders -o json 2>/dev/null
kraken positions -o json 2>/dev/null
kraken futures positions -o json 2>/dev/null
network: exponential backoff retryrate_limit: read suggestion and docs_url fields, reduce call frequency or switch to WebSocketauth: stop and refresh credentialsvalidation or api: stop, fix request, do not blind retrycancel-after) is also dangerous; confirm the timeout value with the user.npx claudepluginhub krakenfx/kraken-cliGuides progression from read-only Kraken market analysis to fully autonomous trading agent via four incremental risk levels with safeguards.
Emergency flatten that closes all open paper positions at last mark and sets a 30-minute trading cooldown. User-initiated only via explicit panic/flatten/stop commands.
Cancels all open orders, closes positions at market, and sweeps advanced orders using cdcx CLI and jq. For market crashes, API key compromise, or emergency hard stops.