skills/recipe-emergency-flatten/SKILL.md
Cancel all orders and close all positions in an emergency.
npx skillsauth add krakenfx/kraken-cli recipe-emergency-flattenInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
PREREQUISITE: Load the following skills to execute this recipe:
kraken-risk-operations,kraken-liquidation-guard
Immediately cancel all orders and close all positions across spot and futures.
CAUTION: This closes everything at market prices. Slippage may be significant. The
--yesflag skips confirmation prompts and is only appropriate at autonomy level 4+ (seekraken-autonomy-levels). At lower levels, omit--yesand confirm each cancel with the user.
kraken order cancel-all --yes -o json 2>/dev/nullkraken futures cancel-all --yes -o json 2>/dev/nullkraken positions -o json 2>/dev/nullkraken futures positions -o json 2>/dev/null (parse each position's size and side fields)sell for longs, buy for shorts): e.g., kraken futures order sell PF_XBTUSD 1 --reduce-only -o json 2>/dev/nullkraken open-orders -o json 2>/dev/nullkraken futures open-orders -o json 2>/dev/nullkraken futures positions -o json 2>/dev/nullkraken balance -o json 2>/dev/nulltools
Connect MCP clients to kraken-cli for native tool calling without subprocess wrappers.
testing
Safely withdraw funds to a pre-approved cold storage address.
testing
Run a weekly portfolio rebalance to maintain target asset allocations.
testing
Ride a trend with a trailing stop that locks in profits on reversal.