From kraken-cli
Manages Kraken earn/staking via CLI: discovers strategies by asset/lock-type, allocates/deallocates funds with status checks, tracks positions.
npx claudepluginhub krakenfx/kraken-cliThis skill uses the workspace's default tool permissions.
Use this skill for:
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.
Use this skill for:
When communicating to client, use the front-end terminology rather than API terminology (so bonded, flexible and auto-earn).
can_allocate and can_deallocate on flex strategy are always false even if user is eligible for the flex strategyList all strategies for an asset:
kraken earn strategies --asset ETH -o json 2>/dev/null
Filter by lock type:
kraken earn strategies --asset ETH --lock-type instant -o json 2>/dev/null
kraken earn strategies --asset DOT --lock-type bonded -o json 2>/dev/null
Paginate results:
kraken earn strategies --limit 10 --cursor <CURSOR> --ascending -o json 2>/dev/null
Key fields in each strategy: id, asset, apr_estimate, lock_type, min_amount, can_allocate, can_deallocate, yield_source.
id.kraken earn allocate <STRATEGY_ID> 1.5 -o json 2>/dev/null
kraken earn allocate-status <STRATEGY_ID> -o json 2>/dev/null
kraken earn deallocate <STRATEGY_ID> 1.0 -o json 2>/dev/null
kraken earn deallocate-status <STRATEGY_ID> -o json 2>/dev/null
Bonded strategies may have unbonding periods. The status response indicates whether funds are pending or available.
kraken earn allocations -o json 2>/dev/null
Filter out zero balances:
kraken earn allocations --hide-zero-allocations -o json 2>/dev/null
Convert to a reference currency for comparison:
kraken earn allocations --converted-asset USD --hide-zero-allocations -o json 2>/dev/null
When helping a user choose a strategy:
apr_estimate, lock_type, and min_amount.can_allocate and can_deallocate fields before attempting operations.