From kraken-cli
Rebalances crypto portfolios weekly on Kraken to target allocations (e.g., 50% BTC, 30% ETH, 20% SOL). Fetches balances/prices, checks 5% drift, computes/executes trades after approval.
npx claudepluginhub krakenfx/kraken-cliThis skill uses the workspace's default tool permissions.
> **PREREQUISITE:** Load the following skill to execute this recipe: `kraken-rebalancing`
Guides Next.js Cache Components and Partial Prerendering (PPR) with cacheComponents enabled. Implements 'use cache', cacheLife(), cacheTag(), revalidateTag(), static/dynamic optimization, and cache debugging.
Guides building MCP servers enabling LLMs to interact with external services via tools. Covers best practices, TypeScript/Node (MCP SDK), Python (FastMCP).
Generates original PNG/PDF visual art via design philosophy manifestos for posters, graphics, and static designs on user request.
PREREQUISITE: Load the following skill to execute this recipe:
kraken-rebalancing
Check portfolio drift and rebalance to target weights once per week.
kraken balance -o json 2>/dev/nullkraken ticker BTCUSD ETHUSD SOLUSD -o json 2>/dev/nullSELL_VOL=$(echo "scale=8; ($CURRENT_BTC_VALUE - $TARGET_BTC_VALUE) / $BTC_PRICE" | bc) and BUY_VOL=$(echo "scale=8; ($TARGET_SOL_VALUE - $CURRENT_SOL_VALUE) / $SOL_PRICE" | bc)kraken order sell BTCUSD $SELL_VOL --type market --validate -o json 2>/dev/nullkraken order sell BTCUSD $SELL_VOL --type market -o json 2>/dev/nullkraken order buy SOLUSD $BUY_VOL --type market -o json 2>/dev/nullkraken balance -o json 2>/dev/null