From kraken-cli
Exports Kraken trades, ledgers, futures history, deposits, withdrawals, and staking rewards to CSV/JSON for tax reporting, auditing, and cost basis calculation.
How this skill is triggered — by the user, by Claude, or both
Slash command
/kraken-cli:kraken-tax-exportThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Use this skill for:
Use this skill for:
Request a full trade export for a tax year:
kraken export-report --report trades --description "2024 tax year" --format CSV --starttm 1704067200 --endtm 1735689600 -o json 2>/dev/null
Check status:
kraken export-status --report trades -o json 2>/dev/null
Download when ready:
kraken export-retrieve <REPORT_ID> -o json 2>/dev/null
Clean up after download:
kraken export-delete <REPORT_ID> -o json 2>/dev/null
Ledgers capture all account activity (trades, deposits, withdrawals, staking rewards, fees):
kraken export-report --report ledgers --description "2024 full ledger" --format CSV --starttm 1704067200 --endtm 1735689600 -o json 2>/dev/null
For smaller date ranges, query directly:
kraken trades-history --ledgers --consolidate-taker -o json 2>/dev/null
Filter by time:
kraken closed-orders --start 1704067200 --end 1735689600 -o json 2>/dev/null
Futures trades are exported separately:
kraken futures history-executions --since 2024-01-01T00:00:00Z --before 2025-01-01T00:00:00Z --sort asc -o json 2>/dev/null
Futures account log (CSV):
kraken futures history-account-log-csv --since 2024-01-01T00:00:00Z --before 2025-01-01T00:00:00Z -o json 2>/dev/null
Complete picture for tax reconciliation:
kraken deposit status --start 1704067200 --end 1735689600 -o json 2>/dev/null
kraken withdrawal status --start 1704067200 --end 1735689600 -o json 2>/dev/null
Staking rewards appear as ledger entries of type staking:
kraken ledgers --type staking --start 1704067200 --end 1735689600 -o json 2>/dev/null
trades-history totals.npx claudepluginhub krakenfx/kraken-cliAnalyzes Kraken crypto portfolios using kraken CLI: fetches balances/prices for valuation/P&L, trade history/ledgers, fees/volume tiers, exports reports.
Calculates crypto capital gains taxes from exchange CSVs using FIFO/LIFO/HIFO; identifies taxable events; generates Form 8949 reports via Python scripts.
Exports MoonPay portfolio balances and transaction history to CSV or JSON for spreadsheets and tax reporting.