calculating-crypto-taxes
Processes crypto transaction history to calculate capital gains and generate tax reports using multiple cost basis methods.
Install
mkdir -p .claude/skills/calculating-crypto-taxes && curl -L -o skill.zip "https://agentskills.codes/api/skills/download/2055" && unzip -o skill.zip -d .claude/skills/calculating-crypto-taxes && rm skill.zipInstalls to .claude/skills/calculating-crypto-taxes
Activation
This is the description your AI agent reads to decide when to run this skill — the better it matches your request, the more reliably it fires.
Calculate cryptocurrency tax obligations with cost basis tracking, capitalKey capabilities
- →Prepare transaction data by exporting CSV from exchanges.
- →Run basic tax calculation using FIFO method.
- →Compare cost basis methods (FIFO, LIFO, HIFO) to understand tax implications.
- →Generate Form 8949 report as CSV.
- →Handle income events like staking, airdrops, and mining.
- →Consolidate multi-exchange data into a unified report.
How it works
The skill imports transaction history from CSVs, calculates capital gains using specified cost basis methods, and identifies taxable events.
Inputs & outputs
When to use calculating-crypto-taxes
- →Calculate crypto capital gains
- →Generate tax reports
- →Compare FIFO and HIFO cost basis
- →Track taxable crypto events
About this skill
Calculating Crypto Taxes
Overview
Calculate cryptocurrency tax obligations from transaction history. Supports FIFO, LIFO, and HIFO cost basis methods, identifies taxable events (trades, staking, airdrops), and generates Form 8949 compatible reports.
DISCLAIMER: This tool provides informational calculations only, not tax advice. Consult a qualified tax professional.
Prerequisites
- Transaction history exported as CSV from your exchanges (Coinbase, Binance, Kraken, etc.)
- Python 3.8+ installed
- Understanding of your tax jurisdiction's crypto rules
Instructions
-
Prepare transaction data by exporting CSV from each exchange:
Exchange Export Location Coinbase Reports > Tax documents > Transaction history CSV Binance Orders > Trade History > Export Kraken History > Export Generic See ${CLAUDE_SKILL_DIR}/references/exchange_formats.mdfor column mapping -
Run basic tax calculation using FIFO (IRS default):
python ${CLAUDE_SKILL_DIR}/scripts/tax_calculator.py --transactions your_trades.csv --year 2025 # 2025 = tax year -
Compare cost basis methods to understand tax implications:
python ${CLAUDE_SKILL_DIR}/scripts/tax_calculator.py --transactions trades.csv --compare-methodsMethods:
--method fifo(IRS default),--method lifo(Last In First Out),--method hifo(minimize gains) -
Generate Form 8949 report as CSV:
python ${CLAUDE_SKILL_DIR}/scripts/tax_calculator.py --transactions trades.csv --method fifo --year 2025 --output form_8949.csv --format csv # 2025 = tax year -
Handle income events (staking, airdrops, mining, DeFi yield):
python ${CLAUDE_SKILL_DIR}/scripts/tax_calculator.py --transactions all_events.csv --income-report -
Consolidate multi-exchange data into a unified report:
python ${CLAUDE_SKILL_DIR}/scripts/tax_calculator.py --transactions coinbase.csv binance.csv kraken.csv --year 2025 # 2025 = tax year
Output
Reports include short-term and long-term capital gains/losses broken down by transaction, with proceeds, cost basis, and gain/loss per disposal. Summary shows total proceeds, total cost basis, net capital gain, and short/long-term split. Income report lists staking, airdrop, and mining income with fair market values.
See ${CLAUDE_SKILL_DIR}/references/implementation.md for detailed output format examples.
Error Handling
| Error | Cause | Fix |
|---|---|---|
| Missing columns | CSV format mismatch | Verify format matches exchange template |
| Unknown transaction type | Unrecognized event category | Review and manually categorize |
| Insufficient lots | Missing buy transactions | Check for missing imports or transfers |
Examples
Basic FIFO tax calculation - Standard IRS-default method for a single exchange:
python tax_calculator.py --transactions trades.csv --year 2025 # 2025 = tax year
HIFO to minimize gains - Highest-cost lots disposed first to reduce taxable gain:
python tax_calculator.py --transactions trades.csv --method hifo --year 2025 # 2025 = tax year
JSON output for processing - Machine-readable export for tax software integration:
python tax_calculator.py --transactions trades.csv --format json --output tax_data.json
Verbose with lot details - See which specific lots were matched to each disposal:
python tax_calculator.py --transactions trades.csv --verbose --show-lots
Resources
- IRS Virtual Currency Guidance: https://www.irs.gov/businesses/small-businesses-self-employed/virtual-currencies
- Form 8949 Instructions: https://www.irs.gov/instructions/i8949
- CoinGecko API for historical prices
${CLAUDE_SKILL_DIR}/references/implementation.md- Detailed output formats, configuration, advanced usage
Prerequisites
Limitations
- →Missing columns in CSV will cause format mismatch errors.
- →Unrecognized transaction types require manual categorization.
- →Missing buy transactions will lead to insufficient lots errors.
How it compares
This skill automates crypto tax calculations and report generation, supporting multiple cost basis methods, unlike manual spreadsheet tracking.
Compared to similar skills
calculating-crypto-taxes side by side with the closest alternatives in the catalog.
| Skill | Installs | Updated | Safety | Difficulty |
|---|---|---|---|---|
| calculating-crypto-taxes (this skill) | 5 | 27d | Review | Intermediate |
| quant-analyst | 103 | 2mo | No flags | Advanced |
| stock-analyzer | 71 | 2mo | Review | Beginner |
| pair-trade-screener | 11 | 1mo | Review | Advanced |
Try saying
Example prompts that trigger this skill in your AI assistant.
More by jeremylongshore
View all by jeremylongshore →You might also like
quant-analyst
zenobi-us
Expert quantitative analyst specializing in financial modeling, algorithmic trading, and risk analytics. Masters statistical methods, derivatives pricing, and high-frequency trading with focus on mathematical rigor, performance optimization, and profitable strategy development.
stock-analyzer
FrancyJGLisboa
Provides comprehensive technical analysis for stocks and ETFs using RSI, MACD, Bollinger Bands, and other indicators. Activates when user requests stock analysis, technical indicators, trading signals, or market data for specific ticker symbols.
pair-trade-screener
tradermonty
Statistical arbitrage tool for identifying and analyzing pair trading opportunities. Detects cointegrated stock pairs within sectors, analyzes spread behavior, calculates z-scores, and provides entry/exit recommendations for market-neutral strategies. Use when user requests pair trading opportunities, statistical arbitrage screening, mean-reversion strategies, or market-neutral portfolio construction. Supports correlation analysis, cointegration testing, and spread backtesting.
risk-metrics-calculation
wshobson
Calculate portfolio risk metrics including VaR, CVaR, Sharpe, Sortino, and drawdown analysis. Use when measuring portfolio risk, implementing risk limits, or building risk monitoring systems.
backtesting-trading-strategies
jeremylongshore
Backtest crypto and traditional trading strategies against historical data. Calculates performance metrics (Sharpe, Sortino, max drawdown), generates equity curves, and optimizes strategy parameters. Use when user wants to test a trading strategy, validate signals, or compare approaches. Trigger with phrases like "backtest strategy", "test trading strategy", "historical performance", "simulate trades", "optimize parameters", or "validate signals".
model-usage
openclaw
Use CodexBar CLI local cost usage to summarize per-model usage for Codex or Claude, including the current (most recent) model or a full model breakdown. Trigger when asked for model-level usage/cost data from codexbar, or when you need a scriptable per-model summary from codexbar cost JSON.